|
HTML Guide
Font HTML:
All font tags begin with <font> and end with </font>. If you do not close the tag, unless you specify another tag, it will carry over to the whole document. Common font tags:
<font color=$$$$$$> <font size=#> <font face=????> You can make a font tag that looks like this: <font color=blue size=3 face=arial>Put text here</font>
Presentation HTML:
<b>Bold</b> <i>Italic</i> <u>Underline</u> <s>Strikeout</s> <sub>Subscript</sub> <sup>Superscript</sup> <tt>Typewriter</tt>
Formatting HTML:
<center>Center</center>
<p>Designates a new paragraph</p> <p align=left|center|right|justify>Align/justify text</p> <br>Inserts a line break
Images and links:
<a href=http://www.yahoo.com>Yahoo!</a> <a href=mailto:you@there.com>Email me</a> <img src=http://www.geocities.com/littlekittengrrl/Pictures/bastian.jpg>
|