HTML Basics
A quick tutorial on how to use some common HTML tags.
<b>Bold</b>
<u>Underline</u>
<i>Italics</i>
<center>Centered</center>
<center><b><u><i>All together</i></u></b></center>
Bold
Underline
Italics
Centered
All together
For paragraphs and break lines(break lines are similar to the 'Enter' key on your keyboard):
<p>Paragraph</p>
Line one<br>
line two<br>
line three<br>
Paragraph
Line one
line two
line three
Links
<a href="http://daylightpets.com/">This is a link to DLP</a>
This is a link to DLP
Now we need to remove that annoying underline:
<a style="text-decoration:none;" href="http://daylightpets.com/">This is a link to DLP</a>
This is a link to DLP
After removing that annoying line why don't we make this link a unique color?
<a style="text-decoration:none;color: #24D700;" href="http://daylightpets.com/">This is a link to DLP</a>
This is a link to DLP
To pick your own color click here!
Images
<img src="http://daylightpets.com/images/user_images/opg_1/pets/pet2_1965.gif">
<p align center><img src="http://daylightpets.com/images/user_images/opg_1/pets/pet2_1965.gif"></p>
NOTE: posting images on the forums is different than posting on profiles- to post on the forums you use [img]IMGURL[/img]