<TITLE></TITLE>
- The Document TitleThis 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>
.
<HEAD>
%i18n |
Here is a sample HTML 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>