Validation Whats wrong?

ZeroX

2[H]4U
Joined
Jan 29, 2001
Messages
2,396
I've found it's useful to have a "gold standard" template to refer to. Then you can just copy paste a known, working website header with doctype and such, and you know it'll work with a few edits.
 
Originally posted by ZeroX
I've found it's useful to have a "gold standard" template to refer to. Then you can just copy paste a known, working website header with doctype and such, and you know it'll work with a few edits.

This is a good idea, I do this with a template like this...
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Title Goes Here</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
...
</body>
</html>
 
Back
Top