Header
The header is the section where you edit certain controls of the page
without making it known to the viewer of the page. Within the header
section you can control the title of the page. The header section is
contained within a <head> tag and </head> tag.
Within the header, you define the title that you want for you page
(normally seen at the top of your browser window), you can set the
base for hyperlinks, you set up the <ISINDEX> tag (used during
interactive searches of a Web page), show relationships (using
<link>), set up meta pages, and set up style sheets. Are you
confused? Don't worry. Most of this is really complex, and isn't
necessary for beginner web page makers. For now we'll just cover the
title.
To set the title of a page, simply put some words between two <title>
tags. So the title: "My First Page" would be: "<title>My First
Page</title>" Remember that it should be placed between a <head>
tag and a </head> tag.
Next lecture