Back Main GuestBook Contact Music (JS) Appendix

<HEAD></HEAD> - The Document Head

This tag is used at the beginning of the HTML document just after the <HTML> tag. This tag defines the head of the HTML document, which will not show up in the browser. The title and several other elements are contained within the head.

This tag should be closed just before the body by typing </HEAD>.

HTML 4.0 Specification § 7.4.1

Attributes for <HEAD>

  %i18n

Basic Structural Attributes

  profile= [CS]
  • "__"
    [profile URI]
Gives the profile's location.
This attribute has something to do with meta data, and I don't understand it at all. So, if you're curious, please go to HTML 4.0 - Meta Data Profiles. ^_^;;

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>