You can change the size, color, and face of your fonts by just using these codes below!:
<font size="3">: Use this to change your font size.
<font color="#800000">: Use this to change your font color.
<font face="Courier New">: Use this to change your font face.
To put these all together, simply use this code:
<font face="Courier New" color="#2B5165" size="3">
Note:(Whenever you want to end a code, like the font code for example, just add a "/" like this: </font>)
(Another example: when you want to end a bold text code, put this </b> )
-To make your text bold:
<B>text</B>
-To underline your text:
<U>text</U>
-To italize your text:
<I>text</I>
Links
There are two kinds of links to put up, a text link, which looks like this: Neopets.
And an image link which looks like this:
.
-To put up a text link, simply use this code:
<a href=http://www.sitehere.com>site</a>: replace the sitehere.com with the site you want to link to.
-To put up an image link:
<a href="http://www.sitehere.com"> <img src="image url here" border="0"></a>: Here you have to replace the sitehere.com with the site you want to link to and 'image url here' with the image's url. I let the border equal zero because if you don't do that, your image will have an ugly blue border around it!
Targeting links
-You can target links to open in a new window or to open in a frame. To target a link to open in a new window just add this to your link code:
target="blank".The full code will look like this: <a href="sitehere.com" target="blank">
Targeting a link to open in a frame is the exact same thing as targeting it to open in a new window. Just change 'blank' to your frame's name. Ex: If my frame's name is 'Blog', then this is how my link's code will look like: <a href="http://www.blah.com" target="Blog">