<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <html> <head> <title>Volcano Web</title> </head> <!-- written for the Writing HTML Tutorial by Lorrie Lava, February 31, 1999 --> <body> In this lesson you will use the Internet to research information on volcanoes and then write a report on your results. </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.
Also note that we have inserted a comment tag that lists the name of the author and the date the document was created. You could write anything in between the comment tags but it is only visible when you look at the source HTML for a web page.
NOTE: For Windows 3.1 users, you must save all of your HTML files with names that end in .HTM, so in this case your file should be VOLC.HTM. Do not worry! Your web browser is smart enough to know that a file that has a name that ends in .HTM is an HTML file.
You can create files with names like VOLC.HTML if you use Windows95 or a later Windows operating system.
By using this file name extension, a web browser will know to read these text files as HTML and properly display the web page.