<HTML>
The very first tag. This tells the browser that a hypertext page is
coming up. If the tag's not there, some browsers will display anything
that follows as plain text, including all other tags.
<HEAD>
The head of a hypertext page contains information about it: its title
and any version/ownership info, as well as metadata.
<TITLE>
The title of your page as browsers will see it. The TITLE element always
sits between the <HEAD> and
</HEAD> tags and must be plain text only.
</TITLE>
Closes the title part of the page.
<!--Your comment here-->
Comment tags. Put the date here, for example. Comments aren't shown on screen.
</HEAD>
Closes the head part of your page. Now you can go on to the fun part!
<BODY>
The start tag of the area where you put text, pictures, sound files, and
pointers to other interesting parts of the Web. Be bold, be smart, be
creative! Presentation is crucial, so make your pages a pleasure for
others to read.
<HR>
This optional tag displays a horizontal rule across the page. Use it as
a visual cue that this is the end of the page. Put your e-mail address
under the rule.
</BODY>
Closes the body area.
</HTML>
The very last tag. It closes your hypertext page.
There are six levels of heading, the first of which produces large, bold lettering, with space above and below. Experiment with your HTML editor and various browsers to see what they look like. The tag for a level one heading looks like this:
<H1>
I've tagged the sentence "This is a first level heading" so you can see what a level one heading looks like on your browser.
Text
Any text that is not enclosed within tags is shown on screen as plain
text. Browsers generally won't see the line and
paragraph breaks generated by your word processor. You must specify
exactly where you want each paragraph to break. Note: Line width changes
according to the size of the window your reader has chosen on his/her browser.
Be kind to your readers and keep paragraphs short!
To break a line, type
<BR>
The next line starts immediately below.
For a paragraph break, type <P>
This inserts a space between the lines.
You may want to emphasize a line or a word. There are two basic attribute tags. The first is
<STRONG>
Usually makes your text look bold.
</STRONG>
And the other is
<EM>
Short for "emphasized". Usually makes your text look italic.
</EM>
The HTML tag for inserting a picture is:
<IMG SRC="yourpic.gif" ALT="Picture of a whatever">
Replace "yourpic.gif" with the actual name of your graphics file. The ALT tag displays text that describes your picture. It is a courtesy for the benefit of text-only browser users or those who have turned their graphics off.
<A HREF="http://www.startrek.com">
Click here for a great Star Trek site!
</A>
The text between the double quotes is the URL of the Web page you want people to visit. You can also link to FTP sites and newsgroups. Because URLs are case-sensitive, be careful to type them correctly--some use all lower-case letters, some include capital letters. You can also use them to link to additional pages that you create, giving your home page more depth.
The Virtual Library's HTML index is where you can obtain other information about HTML editing.
Some nice people at Rutgers University have a collection of public domain graphics to use in your documents.
If you want other advanced information, please go to HTML Goodies. There are many different types of information that can be used in html styles, such as cascading stylesheets (CSS), Javascript, and PHP styles. For more information on these, check out your local bookstores.