Vote for us at TheDollPalace.COM Topsites please?
dollcharm.com is where you can get cute dress up games to dress up dolls and make scenes to put on your webpage or profile! we also have heaps of cartoon dolls, coded and uncoded, that you can freely use. our site also includes heaps of tutorials, psds and more!

Basic HTML

Want to learn some basic HTML codes? Keep reading!

Text effects

To make text go bold, you use this: <b>TEXT HERE</b>
To make text italic, you use this: <i>TEXT HERE</i>
To make text underlined, you use this: <u>TEXT HERE</u>
To make text have a strike-through, you use this: <strike>TEXT HERE</strike>
To change text colours, you use this: <font color="HEX CODE OR COLOUR NAME HERE">TEXT HERE</font>
To change the font, you use this: <font face="FONT NAME HERE">TEXT HERE</font>
To change font size, you use this: <font size="NUMBER HERE">TEXT HERE</font>

Text alignment and grouping

To make a new paragraph, you use this: <p>
For a new line, use this: <br>

You can make your text look really good by using different alignments.
For centered text, use: <center>TEXT HERE</center>
For left-aligned text, use: <div align="left">TEXT HERE</div>
For right-aligned text, use: <div align="right">TEXT HERE</div>

Images

Unfortunately, to make an image show online you can't just insert it. You must upload it to a host, then use the URL in a html code. I recommend these free image hosts: Photobucket, Tinypic, and Imageshack - otherwise you could just upload it to your own server but if you're hosted check with your host before you do that. Once you have uploaded your image to the host, it should show you a URL. You put this url in the html code you want.

For a normal image to show, you use this code: <img src="URL OF PIC HERE">
To change the size of an image (for a thumbnail etc.) you use this code: <img src="URL OF PIC HERE" width="NUMBER" height="NUMBER">
To have words show on mouseover, you use this code: <img src="URL OF PIC HERE" alt="WORDS HERE">

Links

If you want to have a text link, you use this: <a href="URL OF PAGE/SITE HERE">NAME OF LINK</a>
If you want to have an image link, you use this: <a href="URL OF PAGE/SITE HERE"><img src="URL OF PIC HERE"></a>
If you want to have a link open in a new window, you use this: <a href="URL OF PAGE/SITE HERE" target="blank">NAME OF LINK</a>
If you want to break out of frames when you click a link, you use this: <a href="#" target="top">Break out of frames?</a>

Please link me back if this tutorial helped you!