Reputation: 1859
I am using html 5 for web page. When i validate my webpage in http://validator.w3.org/check it showed me the following error.
Line 1, Column 10: delimiter ">" invalid: only name, "#IMPLIED" and parameter separators are allowed
<!DOCTYPE>
If i change this it showed me lot of errors. How can i rectify that?
Upvotes: 1
Views: 1396
Reputation: 12190
It should be <!doctype html>
Read here on how you can validate HTML5 page on W3C Validator - http://www.werockyourweb.com/html5-validator
Upvotes: 2