|
In several of the fields on the posting forms you can add HTML
(Hyper Text Markup Language) coding to further customize the appearance
of your listing.You certainly don't need to know HTML to post
a listing on our site but we thought we'd share a few things to
spruce up your listing if you're feeling adventurous.
Below are some of the most basic and commonly used HTML tags.
This is not meant to be a through outline or tutorial on HTML
-- there are plenty of web resources
to help with that.
Most HTML tags are used in pairs. The starting tag turns on a
feature and the ending tag turns it off -- don't forget the ending
tag or your whole document could turn into one giant link or bold
mess.
| To do this |
Starting Tag |
Ending Tag |
Code example |
Displays |
| Bold |
<B> |
</B> |
<b>Whoopie!</B> |
Whoopie! |
| Italics |
<I> |
</I> |
<I>Italicize me</I> |
Italicize me |
| Line Break |
none |
<BR> |
Here's line 1.<BR>
Here's line 2.
|
Here's line 1.
Here's line 2. |
| Double Line Break |
none |
<BR><BR> |
Here's line 1.<BR><BR>
Here's line 2.
|
Here's line 1.
Here's line 2. |
| Web Link |
<a href=""> |
</a> |
<a href="http://www.charityvillage.com">
CharityVillage.com</A> |
CharityVillage.com |
| E-mail Link |
<a href="mailto:"> |
</A> |
<a href="mailto:help@charityvillage.com">
help@charityvillage.com</A> |
help@charityvillage.com |
| Bigger |
<font size="+1"> |
</font> |
<font size="+1">Important</font> |
Important |
| Smaller |
<font size="-1"> |
</font> |
<font size="-1">Smaller</font> |
Smaller |
Heading
|
<h3> |
</H3> |
<H3>Really Important</H3> |
Really Important
|
|