The following was taken from www.webdeveloper.com/html/html_tutor_2.html
The author is Michael Hayman The Basics The basics cover the tags you need in order for the page "to exist". This doesn't include what goes in the page; it includes only what you need in order for the browser to recognize that it truly is a Web page.

<HTML></HTML>
This is the basic tag for every page. It tells the browser that the file being loaded is a HTML document. Look at the basic layout of any Web page to see how it's used.

<HEAD></HEAD>
This defines the head of your page. Incorporates the <TITLE></TITLE> tag.

<BODY></BODY>
This allows you to define the body arguments. They can include:

<TITLE></TITLE>
This allows you to display a title at the top of the browser.

<META>
This allows the owner to display certain information to the browser without the page seeing it. Here are some examples:

Text Control

<H1></H1>
This allows you to change the size of letters or words. Includes H1 - H6, H1 being the biggest and H6 being the smallest.

<CENTER></CENTER>
This allows you to display the text in the center of the page.

<Q></Q>
This set certain test as a quote.

<BIG></BIG>
This makes the test bigger than the rest.

<SMALL></SMALL>
This makes the text smaller than the rest.

<SUB></SUB>
This allows you to make the text look like this.

<SUP></SUP>
This gives a superscript effect to your text.

<ABBREV></ABBREV>
This abbreviates certain text.

<FONT></FONT>
This allows you to control different aspects of the text. Includes:

<B></B>
This makes a word or group of words bold.

<STRONG></STRONG>
This is the same as bold.

<I></I>
This italicizes a word or group of words. ,

<EM></EM>
This is the same as italics.

<U></U>
This underlines a word or group of words.

<TT></TT>
This makes a fixed width font.

<BLOCKQUOTE></BLOCKQUOTE>
This indents the left and right-hand sides of the text.

<CITE></CITE>
This is another italics tag.

<CODE></CODE>
This is another fixed width font tag.

<DFN></DFN>
This allows you to embolden or italicize a word or group of words.
P><PRE></PRE>
This allows the text to appear in the browser as it does in Notepad, for example.
<LISTING> </LISTING>
This is a small
fixed-width font tag - somewhat similar to <PRE></PRE> that spaces everything out.

Lists

<DL></DL>
This is another way to list items.

<DT> </DT>
This defines the topic of the descriptive list.

<DD></DD>
This defines the indented item to be displayed.

<OL></OL>
This is a way to group items into a list.

<LI></LI>
This defines the list items with a number or a dot. Includes the following:

<UL></UL>
This is another way to list items. Also uses the <li></li> tags to define the list items with a bullet instead of a number number. Includes the following options:

Page Breaks and Lines

<HR>
This allows you to divide a page with a line. Includes the following options:
<BR>
This allows the text to break without a full paragraph. The options are: <NOBR></NOBR>
This allows the text to continue indefinitely without breaking.

Frames, Tables, and Forms

<TABLE></TABLE>

These allow you to insert tables. It has the following options:

It also includes the following tags with their associated options: For more information, please see the tables tutorial.

<FRAMESET></FRAMESET>
This allows you to set up frames on your page. Includes the following:

Requires the frame tag to establish content. These include: Don't forget the <NOFRAMES> tag for those browsers who can't handle frames.

<FRAME>
This establishes content. Its attributes include:

  • MARGINHEIGHT="x"
  • MARGINWIDTH="x"
  • NAME="name"
  • NORESIZE
  • SRC="file.html/file.gif/file.jpg"
  • SCROLLING="yes/no/auto"

<FORM></FORM>
This allows you to insert forms in your page. It includes the following options:

You can also add checkboxes, text boxes and more. For example:

Images and Links

<A></A>
This allows you to make certain text or picture a link to another page or graphic not on the page. It can include the following options:
<IMG>
This allows you to insert an image into your Web page. It has the following options: <MAP></MAP>
This defines the areas and coordinates of an image map.

Java Applets, JavaScript, and Miscellaneous Tags

<APPLET> </APPLET>
This allows you to insert a Java applet directly into your page. It includes:
  • CODE="java.class"
  • CODEBASE="/dir/to/applet"
  • HEIGHT="x"
  • WIDTH="x"
<SCRIPT></SCRIPT>
Javascript allows a script to run within the page. This tag usually appears in the <HEAD></HEAD> part of the document, but can also appear within the <BODY></BODY> tag.

<!-- text -->
Allows text to appear invisible on the page. This is used if you would like to write comments on the page but not have them load in the browser. For example:

<!-- This section is for beginners -->


Tutorial Univ of Texas at El Paso
More Detailed Tutorial