does it matter at all what order the <link>
or <script>
or <meta>
tags are in in the <head></head>
?
(daft question but one of those things i've never given any thought to until now.)
does it matter at all what order the <link>
or <script>
or <meta>
tags are in in the <head></head>
?
(daft question but one of those things i've never given any thought to until now.)
Nope, it doesn't matter, except for CSS linking or inclusion, because of CSS inheritance and the fact that it overwrite what was already styled (sorry for my english, i think my sentence is not really clear :-/).
Put the meta tag that declares the charset as the first element in head. The browser only searches so far for the tag. If you have too much stuff before the meta element, the charset might not get applied.
If you use the BASE element, put it before any elements that load URIs (if desired).