Table of  Introductory   HTML tags:

TAG Description
<html>...</html> Blocks an entire HTML document.
<head>...</head> Blocks the document's head.
<body>...</body> Blocks the document's body.
<body  bgcolor="yellow"   textcolor="navy">...</body> Causes the background of the body to be yellow, and makes the text color navy blue.
<title>...</title> Supplies title for body of document.    see examples
<h1>...</h1> First-level heading, there are six levels total see examples.
<h6>...</h6> Sixth-level heading see examples.
<br> Forces a line break   see examples.
<hr> Draws a horizontal line see examples.
<p> .. </p> Breaks up text into spaced regions (paragraphs), </p> tag   is optional.      see examples.
<ol>...</ol> Creates a numbered (ordered) list.   see examples
<ul>...</ul> Creates a bulleted (unordered) list.   see examples
<li>…</li> Marks a member of a list.   see examples
<blockquote>…</blockquote> Can be used for indentation.    see examples
<pre>...</pre> Preformatted style (best way to include tabs).  see examples
<!-----......----> Comment for the user/reader.   see examples
 

        

Last updated on 09/06/2004  by L.M. Hicks