in reply to Mixing css with html

So i can't link a style sheet from my computer at all?

Replies are listed 'Best First'.
Re^2: Mixing css with html
by ww (Archbishop) on Apr 15, 2011 at 02:18 UTC

    That's not at all what moritz said.

    If "human_vision.css" is -- in fact -- the applicable css, try (inside the head section):

    <link rel="stylesheet" type="text/css" href="file:///g:/programming/perlbackups/human_vision.css">

    Alternately, there's nothing to stop you (except some folks notion of "good practice") from including your css inside the .html file.

    Update: You can and should read about formating in the Monastery. Minimally, use <c>...</c> tags around your code (and data). See Markup in the Monastery.

    Update 2: Removed the single quote/apostrophe before the "g" (in the code) thanks to a good catch by Mr._Muskrat.