| Below are the most commonly used HTML tags. |
| |
| Font tag (All
values in blue indicate values that you can modify
in the tags.) |
<font face ="verdana"
size="3" color="red">I
like my cat</font>
I like my cat |
Common Font Faces:
verdana, arial, Times New Roman,
Monotype Corsiva, Bradley Hand
ITC, Comic Sans)
|
| Bold, Underline and Italic tags
|
|
<B>I like my cat</B>
|
<U>I like my cat</U>
|
<I>I like my cat</I>
|
|
I like my cat
|
I like my cat
|
I like my cat
|
| Line Breaks with images and text. |
Line Break tag: <BR>
The <BR> tag is used to create a line break. Two <BR> tags would result
in a blank line. |
| Example with BR tag. |
I like my cat.<BR>
<img src=http://pics.picturetrail.com/res/album/bling/peeps/animestar.gif> |
| |
| This is the result: |
I like my cat.
 |
| |
| Example without BR tag. |
I like my cat.
<img src=http://pics.picturetrail.com/res/album/bling/peeps/animestar.gif> |
| |
| This is the result: |
I like my cat. |
| |
| Center the image or text. Or right or left justify
it. |
| <CENTER>I like my cat.</CENTER>
|
| |
| This is the result: |
| I like my cat. |
| |
| <div align="right">I
like my cat.</div> |
| |
| This is the result: |
| I like my cat. |
| |
| <div align="left">I
like my cat.</div> |
| |
| This is the result: |
| I like my cat. |