Forum Moderators: open
I've been using validator.w3c.org as a tool and sometimes my dreamweaver tool, but what tools do you use?
Oh, yeah, to what extent is the order in which you put data in the head of the doc important?
Is:
<!DOCTYPE
<html>
<head>
<title>
<meta name="Description" (etc.....)
<meta name="Keywords" (etc.....)
<meta name="verify-v1" (etc.....)
<meta http-equiv="Content-Type" (etc.....)
<meta name="y_key" (etc.....)
<style type="text/css"> (etc.....)
<body>
<html>
<head>
<title>
<script src="/scripts/
<script src="/scripts/
<script src="/scripts/
<link rel="stylesheet" href="/scripts/
<link rel="stylesheet" href="/scripts/
<link rel="stylesheet" href="/scripts/
<meta name="keywords"
<meta name="description"
<body>
-OR- does it really not matter to the SE's when it comes to a pages validity, score, postion in SERP's, etc.?
[edited by: jatar_k at 6:16 pm (utc) on Mar. 24, 2008]
[edit reason] fixed formatting [/edit]
A couple of reasons pop into mind right away;
1- like mentioned right above, it won't lag the load of content
2- Any script that affects elements in page won't break trying to affect an element that hasn't been rendered yet.
Would there be an advantage to having the scripts somewhere else, like in the good old days in the <head> portion of a page?
The loading of a script file will "block" the loading of any content below it. So putting scripts up in the <head> means that the browser will not load any of the content until it finishes loading all of the scripts, which can give quite a delay before the user sees any content.