Common codes used on Eons in messages and Pm's. If
you are creating a web page, See the separate file
about HTML/XHTML
tags.
When you use code, don't forget to include the ending tags!
Editorial note: Eons
and other storage sites usually provide you
with the HTML or embed code that you can simply copy and paste to add
an image to a
message or PM. Some image sharing sites, however, add extra code to
include their advertisements which sometimes specifies where the ads
will appear and this can cause problems. Knowing the
basic HTML code can help you identify the part of the code that is
causing the problems.
1. Adding an image to a post or PM:
<img src="Put Direct Link of Image Here">
Writing:
<img
src="http://www.eons.com/images/members/0/7/07043502_o.jpeg">
Would add the following
image to your post:

2. Linking to a URL from words:
<a href="Put URL address here">Put
Words Here</a>
If you write:
Have you visited the
<a
href="http://www.eons.com/groups/group/the-studio----having-fun-with-css-and-html">The
Studio </a>group
lately?
would show in your post as:
Have you visited the The
Studio group lately?
3.
Linking to URL with graphic.
<a href="Put URL Where You Want Them to Go"><img src="Put Direct Link of Image Here"></a>
Writing:
Click on the button <a
href="http://www.cooltext.com"><img src="http://www.eons.com/images/members/0/7/07043502_o.jpeg"></a> to
go to cooltext.com and make your own!
Would show in your post as:
Click on the
button
to
go to cooltext.com and make your own button!
Other common tags:
BOLD =
<b>...</b>
Put
the text you want to be bold between the tags:
<b>YOUR TEXT IN BOLD</b> Gives you - YOUR TEXT IN BOLD
ITALICS =
<i>...</i>
Put
the text you want to be in italics between the tags:
<i>YOUR TEXT IN ITALICS</i> Gives you - YOUR TEXT IN ITALICS
UNDERLINE =
<u>...</u>
Put the text
you want to be underlined between the tags:
<u>YOUR TEXT UNDERLINED</u> Gives you - YOUR TEXT UNDERLINED
CENTER =
<center>...</center>
Put the text
you want centered between the tags:
<center>YOUR TEXT CENTERED</center> Gives
you -
YOUR TEXT CENTERED
FONT COLOR =
<font
color="blue">...</font> Put
the text
you want colored red between the tags:
<font color="blue">YOUR TEXT IN BLUE</font> Gives
you - YOUR
TEXT IN BLUE
TEXT SIZE =
<big>...</big>
OR
<small>...</small>
Put the text
you change size between the tags:
<big>YOUR TEXT IN BIG TEXT</big>
Gives you - YOUR TEXT IN BIG
TEXT
<small>YOUR TEXT IN SMALL TEXT</small> Gives
you - YOUR TEXT IN SMALL TEXT
GROUPING TAGS: You can also group tags by "nesting" them.
Just be sure to close them in order from the inside out.
<font
color="blue"><big><u>YOUR TEXT UNDERLINED, BLUE AND BIG</u></big></font>
Gives you - YOUR
TEXT UNDERLINED, BLUE AND BIG
Other useful tags:
LINE BREAK =
<br /> Starts a
new line (Like clicking the "return" or "enter" key on your keyboard).
HORIZONTAL LINE =
<hr> Draws a
horizontal line (rule) between sections of text.
There is a separate help file:
http://ccs.110mb.com/eons/CommonHTMLtags.html
that contains the recommended tags and css to use when creating web
pages. The information aboveTags is also included along with other tags
of
interest.