Home >> (x)HTML

Standards Based Flash for XHTML or HTML

Posted on: Saturday, March 8th, 2008 in: (x)HTML

After wondering about this for a few days, I have seen places on the web attempt this. Surely, it must be possible to do and at the same be cross-browser compatible. Well, the following method works in both IE, FF, Opera, and Safari. Also, this method is valid in HTML 4.01 Strict and valid in […]

(x)HTML DocTypes

Posted on: Friday, March 16th, 2007 in: (x)HTML

HTML 4.01 Strict:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
XHTML 1.0 Transitional:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
XHTML 1.0 Strict:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
XHTML 1.1:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">