
Originally Posted by
MarkStrobel3367
I found the right character code to use that
The W3C Markup Validation Service accepts. However, it seems that this site is giving me a lot of false negative readings. It lists about 114 errors on one page. Many of the errors have to do with the use of < and >. When I remove either of these characters, the whole page goes high-wire. I'm really confused about this validation site!
The problem is that you have an HTML doctype (a very outdated one, too, as "transitional" is only for very old websites) but you are using XHTML syntax, ending a lot of your tags with />. In HTML, that ending should just be >. E.g. instead of
Code:
<meta name="google-site-verification" content="google site verification code there" />
is should be
Code:
<meta name="google-site-verification" content="google site verification code there" >
Bookmarks