TEXT
*
Bold <b>Bold</b>
*
Italic <i>Italic</i>
*
Underline <u>Underline</u>*
*
Strikeout <strike>Strikeout</strike>
*
Superscript <sup>Superscript</sup>
*
Subscript <sub>Subscript</sub>
*
Teletype <tt>Teletype</tt>
Combination Bold Underline Teletype <b><u><tt>Bold Underline Teletype</tt></u></b>
* Text color: <font color="#color code or color name">your text here</font>
Dark Blue <font color="#00008B">Dark Blue</font> or <font color="dark blue">Dark Blue</font>
* Text size: <font size="size number">your text here</font>
Size 3 Text <font size="3">Size 3 Text</font>
Sizes: 1 2 3 4 5 6 7
* Font face: <font face="font name">your text here</font>
Georgia <font face="Georgia">Georgia</font>
Common fonts: Arial, Century Gothic, Book Antiqua, Tahoma, Trebuchet MS, Verdana, Courier New, Georgia, Times New Roman, Zapf Chancery, Comic Sans MS, Impact
* Letter spacing: <font style="letter-spacing:2px">your text here</font>
Increased (2px) <font style="letter-spacing:2px">Increased (2px)</font>
Decreased (-1px) <font style="letter-spacing:-1px">Decreased (-1px)</font>
* Background color: <font style="background-color:#color code">your text here</font>
Grey Background <font style="background-color:#A3A3A3">Grey Background</font>
IMAGES
* Display an image: <img src="image url here">

<img src="http://www.asweetspace.com/images/buttons/promote_button_3.gif">
* Change the width of an image: <img src="image url here" width="number of pixels here">

<img src="http://www.asweetspace.com/images/buttons/promote_button_3.gif" width="75">
LINKS
* Create a link: <a href="url here">your text here</a>
Link <a href="http://www.asweetspace.com/codes_tweaks/html_styling_1.html">Link</a>
* Link that opens in a new window: <a href="url here" target="_blank">your text here</a>
New Window Link <a href="http://www.asweetspace.com/codes_tweaks/html_styling_1.html" target="_blank">New Window Link</a>
* Create an image link: <a href="url here"><img src="image url here" border=0></a>

<a href="http://www.asweetspace.com/codes_tweaks/html_styling_1.html"><img src="http://www.asweetspace.com/images/buttons/promote_button_3.gif" border=0></a>
ALIGNMENT
* Make text or images start on a new line: <br/>
Add more <br/>s to increase
the
space
* Center text or images: <center>your text or image source here</center>
Centered <center>Centered</center>
* Align text or images to the right: <p align="right">your text or image source here</p>
Right-Aligned <p align="right">Right-Aligned</p>
* Align text or images to the left: <p align="left">your text or image source here</p>
Left-Aligned <p align="left">Left-Aligned</p>
* Scrolling text: <marquee>your text here</marquee>
<marquee>Scrolling Text</marquee>
* Scrolling image: <marquee><img src="image url here"></marquee>
<marquee><img src="http://www.asweetspace.com/images/buttons/promote_button_3.gif"></marquee>
EXAMPLE USING MULTIPLE STYLES
*Text styled to be bold, italic, white, size 2, Georgia font, decreased letter spacing, grey background, scrolling: <b><i><font style="color:white" size="2px"><font face="Georgia"><font style="letter-spacing:-1px"><font style="background-color:#A3A3A3"><marquee>Bold, Italic, White, Size 2, Georgia Font, Decreased Letter Spacing, Grey Background, Scrolling!!!</marquee></font></font></font></font></i></b>