Another Sample Web Page
<html> <!-- these are "comments" -->
<head> <!-- they won't appear in the browser -->
<title>Another Sample Web Page</title> <!-- the title appears in the Browser title bar -->
<center> <!-- everything will be centered until closing tag -->
<body bgcolor="#FFFFFF"> <!-- background color set to white -->
<h1>Another Sample Web Page</h1> <!-- h1 is the biggest heading -->
<h2>to illustrate some simple HTML formatting</h2><!-- h2 is the next biggest heading -->
</center> <!-- centering ends here -->
<hr> <!-- horizontal line -->
Just entering text causes it to be displayed in a simple manner. Regardless of where
you hit the enter key when typing, the browser will wrap the text according to how much
<p> <!-- tag to force a new paragraph -->
You must use the paragraph tag to force a new paragraph.
There is a special tag that is used to create hyperlinks to other pages. This tag is
used here to refer to the <A HREF="http://www.pitt.edu">University of Pittsburgh</A>
http://www.pitt.edu/~richfran/sample1.htm