CSS link position

liunx

Guest
Where is the correct place to store a link tag to an external css file. Should it be placed within the head tag as follows:<br />
<br />
<head><br />
<link href =http://www.webdeveloper.com/forum/archive/index.php/"css.css" rel = "stylesheet" type = "text/css"><br />
<head><!--content-->yes. I use a slightly different order, but I don't think it makes any difference.<br />
<br />
<link href=http://www.webdeveloper.com/forum/archive/index.php/"css/main.css" type="text/css" rel="stylesheet"><!--content-->The order that attributes appear has no bearing (unless you've definded the same attribute twice). I like things alphabetical myself. <br />
<br />
See <!-- m --><a class="postlink" href="http://www.w3.org/TR/html4/struct/links.html#h-12.3">http://www.w3.org/TR/html4/struct/links.html#h-12.3</a><!-- m --> for the low down on the LINK element.<!--content-->
 
Back
Top