html doctype error
by Prakash[ Edit ] 2013-09-19 11:58:26
When you view source HTML of some websites firefox shows the following error
Almost standard mode doctype. Expected DOCTYPE HTML
To avoid that replace
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
with the following
<!DOCTYPE html>
before your HTML tag.