| 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>
<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>
<p>© Copyright 2000 Jane Doe </p>
</body> [This tag signifies the end of the body of the document.] </html> [This tag signifies the end of the html document]
|