Vermont Educational Telecommunications Consortium


Creating HTML Files (Web Documents)

Web documents are created by inserting special tags into plain text documents and naming the resulting files with the extension .html. You can create these files using any word processor, text editor, or even special HTML editing programs.

To use a word processor or text editor, simply type the text and tags on the same screen.

HTML tags are enclosed in angle brackets (<>). Generally, a tag by itself in the brackets signifies the beginning of a particular feature, while the tag ending that feature is preceded by a slash. For example, typing the following line of text and tag:

These <i> words are in italics </i>.

would result in a sentence that looks like this:

These words are in italics.


As you type your HTML files:

The official list of the basic set of tags and how to insert them can be found in the document A Beginner's Guide to HTML.

Here is a sample .html document. Feel free to copy and edit it:



<HTML>
<HEAD>
<TITLE>Greenberg-VETC My first HTML file</TITLE>
</HEAD>

<BODY>
<h1>Welcome to my page!</h1>
<h2>My name is Hope Greenberg</h2>

I am building a web site at the  <A HREF=http://www.vetc.vsc.edu/>VETC</A>.<P>

Here are some other Web places you might like to visit:<P>
<A HREF=http://www.uvm.edu/>The University of Vermont</A><P>

<A HREF=telnet://luis.uvm.edu/>LUIS: UVM's online library catalog</A><P>



<hr>

<h6>Created and copyright by Hope Greenberg, 
<a href=mailto:hag@moose.uvm.edu>hag@moose.uvm.edu</A>. 
Last updated: 6/18/1996. 
</BODY>


Go to the next step in the Web Publishing CYCLE or to the beginning of any these tutorials:

Go to Macintosh
TutorialGo to Windows
Tutorial Go to the beginning of the Web Tutorials



© Vermont Educational Telecommunications Consortium, Inc.
E-mail: webmaster@vetc.vsc.edu

Updated by: Hope Greenberg
July 10, 1996.