This appendix lists the HTML tags covered in chapter 26, "Creating Your Web Page."


Document Organization


Address
<address> . . .text . . .<address>

Blockquote
<blockquote> . . .text . . .</blockquote>

Heading 1
<h1> . . .text . . .</h1>

Heading 2
<h2> . . .text . . .</h2>

Heading 3
<h3> . . .text . . .</h3>

Heading 4
<h4> . . .text . . .</h4>

Heading 5
<h5> . . .text . . .</h5>

Heading 6
<h6> . . .text . . .</h6>

New line
<br>

New paragraph
<p>


Graphics


Horizontal rule
<hr attributes>

Horizontal rule examples:
<hr size=20 width=288 align=center noshade>
<hr size=10 width=75% align=left>

Image
<img attribute(s)>

Image example:
<img src="ingrid.gif" align=bottom alt="I have expressive eyes with long eyelashes.">


Links


Anchor
<a attribute(s)> . . .text . . .</a>

Anchor examples:

Email address:
<a href="mailto:ingrid@tidbits.com">ingrid@tidbits.com</a>

Full URL:
<a href="http://quest.arc.nasa.gov/livefrom/livefrom.html">Live from Antartica</a>

Named target:
<a name="other penguins">Other Penguins on the Web</a>

Relative URL:
a href="reno.html">Reno, Nevada</a>


Lists


Definition list
<dl> . . .list . . .</dl>
Definition list definition
<dd>
Definition list term
<dt>

Definition list example:
<dl>
<dt>Tomatoes
<dd>Just chop up tomatoes and stick them on your pizza.
<dt>Mushrooms
<dd>Saute mushrooms before putting them on a pizza.
</dl>

Ordered (numbered) list
<ol> . . .list . . .</ol>

List entry
<li>

Unordered (bulleted) list
<ul> . . .list . . .</ul>


Special Characters


Aacute (&aacute;)
á

Ampersand (&)
&amp;

Double straight quote (")
&quot;

Eacute (é)
&eacute;

Left angle bracket (<)
&lt;

Ntilde (ñ)
&ntilde;

Right angle bracket (>)
&gt;


Typography


Bold
<b> . . .text . . .</b>

Cite
<cite> . . .text . . .</cite>

Code
<code> . . .text . . .</code>

Emphasize
<em> . . .text . . .</em>

Italic
<i> . . .text . . .</i>

Keyboard
<kbd> . . .text . . .</kbd>

Preformatted (monospaced)
<pre> . . .text . . .</pre>

Sample
<samp> . . .text . . .</samp>

Strong
<strong> . . .text . . .</strong>

Typewriter
<tt> . . .text . . .</tt>

Underline
<u> . . .text . . .</u>

Variable
<var> . . .text . . .</var>