| HTML Code | Example |
| <b>Bold</b> | Bold |
| <i>Italics</i> | Italics |
| <font size="+3" color="00FF00">big green text</font> and <font size="-1" color="FFFF00">little yellow text</font> | big green text and little yellow text |
| <center><img src="http://fatbasset.com/peter/pics/fatbasset.jpg" width="172" height="188"></center> | ![]() note that the actual picture size is twice as tall and wide, I used the width and height options to scale it down. |
| <a href="http://www.myspace.com">A text link to MySpace</a> | A text link to MySpace |
| <a href="http://www.chicagojazz.com"><img src="http://fatbasset.com/peter/pics/treble_clef_30x80.gif"></a> | ![]() this is a link using a picture. |
| <Style type="text/css"> body{ background-color:#D6E7F7; background-image:url("http://fatbasset.com/peter/pics/LinesBlue.jpg"); background-position:Top Left; background-attachment:fixed; background-repeat:no-repeat; } Table, Td{ background-color:transparent; } .orangetext15, .lightbluetext8 {font-family:verdana,arial,sans-serif,helvetica; font-size:9pt; color:FFFFFF; font-weight:bold;}</Style> | How I put the background on this page. Note that the picture ("background-image") supercedes the background color. If you just want a solid color, just remove the background-image section. The ".orangetext15" and ".lightbluetext8" section is redefining how two styles of text (orange and light blue text in the default MySpace style) are displayed. In this case, I'm simply redefining both of those to be white ("FFFFFF") for better readability on my profile. |