Create an HTML file
It is time for an exercise. Create an HTML file similar to the example shown
below.
<HTML>
<HEAD>
<TITLE>My Home Page</TITLE>
</HEAD>
<!-- Written by me -->
<!-- Created: yesterday -->
<!-- Last modified: today -->
<BODY>
This is where the text goes.
</BODY>
</HTML>
Once you have created your HTML file, run it to see if you get the same
results I obtained. You should get a page which
has a title of "My Home Page" and text within the page that says "This
is where the text goes."
Let's review this chapter.