Forum Moderators: phranque
The DOCTYPE definers the version of HTML you are using - it is vital for validation. I don't know if you made a cut-and-paste error with your example, but your doctype should read like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> What is the one error that you get when you validate your page?
Thanks for the heads up on the doctype. It was not a cut and paste error, however it will be a cut and paste fix;)
JPell
<link href="style.css" rel="stylesheet" type="text/css">
and make sure it points to your stylesheet if you have one (if you don't, comment out the line or remove it).
The HTML validator can be found here:
[validator.w3.org...]