Jane Doe's Web site
 html> [This tag signifies this is an html document.] 

 <head> [This tag signifies the beginning of the header information.] 

 <title> Jane Doe's Web Site</title> [Replace "Jane Doe" with your name.]

 </head> [This tag signifies the end of the header information.]

     [Information above the <body> tag does not show on the Web page.] 

 <body> [This tag signifies the beginning of the html material.] 

 <h3> Jane Doe's Web Site </h3> [Replace "Jane Doe" with your name.]

 <p> Hello, I am Jane Doe.  Welcome to my Web site.</p> 
 [The <p> tag indicates a paragraph.  The </p> tag indicates that the paragraph has ended.]
 [Replace the text with your own text..]

 <p> <a href="350.html">NCLC 350.</a></p>  [This tag creates a link to your CourseWeb site, which will have a "home page" and links to your course assignments.]

<p> You can put links to other things of interest to you on this page, since this page is NOT course specific. </p>

 <p> e-mail me at: <a href="mailto:jdoe@gmu.edu">jdoe@gmu.edu</a>
 [This tag will allow people to send you an e-mail by clicking on the link created when you type in the html tags above. Substitute your mason e-mail address for Jane Doe's.]

 <p>&copy; Copyright 2000 Jane Doe </p> 
 [The copyright symbol will appear in on your Web page. Replace "Jane Doe" with your name.]

 </body> [This tag signifies the end of the body of the document.] 

 </html> [This tag signifies the end of the html document]