|
Text
and Formatting |
<b>Your
Text Here</b>
Creates bold text. |
<i>Your
Text Here</i>
Creates italic text. |
<u>Your
Text Here</u>
Creates
underlining. |
|
Fonts
- Color, Size and Face |
<font
face="?">Your Text Here</font>
Sets
font face. Replace ? with font name for example Arial. |
<font
size=?>Your Text Here</font>
Sets size of font.
Replace ? with 1 thru 7. |
<font
color=?></font>
Sets font color,
Replace ? with color name or hex value. |
Final
Example Using All Examples Above
<font
size="2" face="Arial" color="#FF0000">Your
Text Here</font> |
|
Paragraphs,
Breaks, Lists and Bullets |
<p>Your
Text Here</p>
Creates a new paragraph |
<p
align=?>Your Text Here</p>
Aligns a paragraph to
the left, right, or center. Replace ? with either left, right, or center. |
<br>
Inserts a line break. |
<ol>
<li>Your Text Here</li>
</ol>
Creates a numbered list. |
<ul>
<li>Your Text Here</li>
<li>More Text Here</li>
</ul>
Creates a bulleted list. |
|
URL
and Email Hyperlinks |
<a
href="http://www.yoursite.com">Your Text Here</a>
Creates a hyperlink.
Replace your text here with text to be hyperlinked. |
<a
href="mailto:you@youremail.com">Your Text Here</a>
Creates an email
hyperlink. Replace your text here with text to be hyperlinked. |