H T M L 1 0 1 - CREATING AN HTML
FILE WALKTHROUGH
If it is not open already, launch your text editor, Windows
Notepad.
Enter the following text (you do not have to press RETURN at the
end of each line; the web browser will word wrap all text):
<html>
<head>
<title>Admissions</title>
</head>
<body>
Hello! This is my first web page. </body>
</html>
NOTE: Look where the <title>...</title> tag is
located. It is in the <head>...</head> portion and thus will not
be visible on the screen. What does it do? The <title> tag is used to
uniquely identify each document and is also displayed in the title bar of the
browser window.
Now if we want to make the text more visually appealing to catch the reader's
interest we have to add some formatting tags. Let's go on to the next page
to see how that is done.
|