Back Main GuestBook Contact Music (JS) Appendix

<TITLE></TITLE> - The Document Title

This tag is used to define the title of the page. It must appear within the document head. The title is often displayed at the top of your web browser in the title bar. When you bookmark a web page, the title becomes the bookmark, so make sure the title is relevent to your web page's contents.

This tag should be closed by typing </TITLE>.

HTML 4.0 Specification § 7.4.2

Attributes for <HEAD>

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