Posts: 758
Location: between here an somewhere else
|
Ok well you have some issues......
First off try using this doc type at the top of your page
HTML Code:
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
next in the head portion of your html add these meta tags
HTML Code:
<meta http-equiv="Content-Language" content="en-us" />
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
Now keep in mind when using xhtml everything has to be in lowercase....
example you have a <FORM> tag it should be <form>
also tags such as <br> and <img src="whatever.jpg"> need to have a closer like so...
<br /> and <img src="whatever.jpg" /> oh and meta tags need this....
try those items and run the validator again....
good luck
|