See my main HTML page or
Shayanna's HTML tips for how to use HTML. This is just a quick reference
of frequently used HTML tags in roleplay.
Text: Basic Formatting
Bold |
<b> text </b> |
Italic |
<i> text </i> |
Underline |
<u> text </u> |
Bold, Italic and Underline |
<b> <u> <i> text </i> <u> <b> |
Center |
<center> text </center> |
*Please note that when nesting tags, as above, to end them
in the right order!
Text: The FONT tag
<font > </font> |
|
size= |
1 (smallest), 2, 3 (average), 4, 5, 6 7 (largest) |
color=" " |
red, green, blue, silver, gray, maroon, aqua, lime, turquoise, yellow, orange, pink, silver |
face=" " |
verdana, arial, tahoma |
<font size=2 color="maroon" face="verdana"> text! </font> |
*Note: colors can be more specifically defined using hexadecimal values- this is a good chart if you want to do that: Doug's page.
Images: PLEASE see the images page if you're going to use
images in your handle or in your roleplay.
You post images by linking to the place they're stored on the net with an image tag. It looks like this:
<img src="http://www.somewhere.com/something.jpg">
It doesn't have an end tag. The image will show up exactly where the image tag is.
Linking: Linking on the other hand does have an end tag. It looks like this:
<a href="http://www.somewhere.com/somewhereelse/document.html"> text that will be linked </a>
|