HTML Code

<HTML>
<HEAD>
<TITLE>
Writing Workshop II Home Page</TITLE>
</HEAD>
<BODY>

(All Web page contents will go here.)
</BODY>
</HTML>


Step 1
Explanation: The Simple HTML Container

The Minimal Components of an HTML Document

Every HTML document should contain certain standard HTML tags. These are:

Because you should include these tags in each file, you might want to create a template file with them.

Naming Files

At this point, you should save your file. The file extension .html or .htm indicates that this is an HTML document and must be used on all HTML files. It is also a standard convention to call the main page of your site index.html or index.htm. This is because most Web servers are set up to recognize “index” files as “home” pages, so that if someone goes to your site they need only type the URL (Uniform Resource Locator) up to the name of the directory in which your index.html file resides. For example, in http://www.mycollege.edu/professor/,   the index file will be called automatically. Other pages that you create may be named descriptively--or example, schedule.html or syllabus.html.

back view page