Conforming HTML 4.01 Transitional Template
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Conforming HTML 4.01 Transitional Template</title>
</head>
<body>
[Your Content Here]
</body>
</html>
Conforming HTML 4.01 Strict Template
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Conforming HTML 4.01 Strict Template</title>
</head>
<body>
[Your Content Here]
</body>
</html>
Conforming HTML 4.01 Transitional Frameset Template with accessibility
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Conforming HTML 4.01 Transitional Frameset Template with accessibility</title>
</head>
<frameset cols="20%, 80%">
<frameset rows="100, 200">
<frame src="contents_of_frame1.html" />
<frame src="contents_of_frame2.gif" />
<noframes>
<body>
<p>This frameset document contains:</p>
<ul>
<li><a href="contents_of_frame1.html">Some content</a></li>
<li><img src="contents_of_frame2.gif" alt="An image" /></li>
</ul>
</body>
</noframes>
</frameset>
</frameset>
</html>
Conforming XHTML 1.0 Transitional Template
<!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>
<title>Conforming XHTML 1.0 Transitional Template</title>
</head>
<body>
[Your Content Here]
</body>
</html>
Conforming XHTML 1.0 Strict Template
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Conforming XHTML 1.0 Strict Template</title>
</head>
<body>
[Your Content Here]
</body>
</html>
Conforming XHTML 1.0 Frameset Template with accessibility
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Conforming XHTML 1.0 Frameset Template with accessibility</title>
</head>
<frameset cols="20%, 80%">
<frameset rows="100, 200">
<frame src="contents_of_frame1.html" />
<frame src="contents_of_frame2.gif" />
<noframes>
<body>
<p>This frameset document contains:</p>
<ul>
<li><a href="contents_of_frame1.html">Some content</a></li>
<li><img src="contents_of_frame2.gif" alt="An image" /></li>
</ul>
</body>
</noframes>
</frameset>
</frameset>
</html>
Conforming XHTML 1.1 Template
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Conforming XHTML 1.1 Template</title>
</head>
<body>
[Your Content Here]
</body>
</html>