The HEAD Section

The HEAD section is defined between the <head> and </head> tags.

The main item you want in the HEAD section is the TITLE. The TITLE provides a title in the browser's title bar, and is defined by the <title> and </title> tags. The text that appears between these two tags appears in the browser's title bar.

Adding a HEAD section and a TITLE, our document would now look like this:

<html>
<head>
<title>My HTML Document</title>
</head>
</html>