templates and files for special edition using html & xhtml

Want a first-hand try at many of the book's examples? Looking for a quick way to ensure that your XHTML and HTML documents contain the necessary structural components?

Download the code.

Scroll on down to find the one you want, then copy and paste right from this page!

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>


</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>



</body>
</html>

Conforming HTML 4.01 frameset template

<!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 Template</title>

</head>

<frameset>

<noframes>

<body>
<!-- place alternative information for accessibility purposes here -->
</body>
</noframes>

</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>


</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>

</body>
</html>

Conforming XHTML 1.0 frameset template

<!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>

<noframes>

<body>
<!-- place alternative information for accessibility purposes here -->
</body>
</noframes>

</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>

</body>
</html>

Copyright Dunstan Orchard