Web Design & Development
[ Web Design & Development Topics ]
XHTML is a standard that ensures your code is clean, error free, and symantically correct. There have been a number of standards created over the years for HTML but the latest standard is XHTML, which applies to both HTML documents and also XML documents. There are only a few differences from HTML 4.0, and it is strictly in the syntax (most elements, attributes and values have not changed). Here is the difference in XHTML 1.0 from the old HTML 4.0:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
Body text goes here.
</body>
</html>