How do i resolve this HTML Doctype errors -
this doctype doesn't support following attributes produce errors on w3 validations there no attribute "type"
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
you don't need stuff. should suffice without errors:
<!doctype html> <html> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
Comments
Post a Comment