Back Main GuestBook Contact Music (JS) Appendix

<HTML></HTML>

This tag encompasses the entire HTML document after the document-type declaration

This tag should be closed at the end of the document by typing </HTML>.

HTML 4.0 Specification § 7.3

Attributes for <HTML>

  %i18n

Here is a sample HTML page:

Sample Page


Here is the code for the sample above:



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML>
<HEAD>
<TITLE>
All About Violets *\*/*
</TITLE>
<STYLE type="text/css">
<!-- H1 {color: #800080} -->
</STYLE>
</HEAD>
<BODY bgcolor="#FFFFFF" link="#FF0000" alink="#FF00FF" vlink="#0000FF" text="#006600">
<H1>All About Violets</H1>
<p>The beautiful wild violets that decorate lawns... blah, blah, blah...</p>
</BODY>
</HTML>