Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTML Validation

Status
Not open for further replies.
Joined
Oct 11, 2006
Messages
300
Location
US
Hi,

I validation my HTML with the W3 Validator.

This is the result I found.

This Page Is Valid (no Doctype found)!

I do have a doc type defined at the top of my page, then why I do see this - no doctype found.

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""[URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]
 
Would you believe your missing a space:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN[red]""[/red][URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]

change it to:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN[red]" "[/red][URL unfurl="true"]http://www.w3.org/TR/html4/loose.dtd">[/URL]





----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top