| Type This |
What it Means |
EXAMPLE of how to type
or "cut and paste" it in your page |
What it looks like. |
| |
Space |
Advanced Coding $300 |
Advanced Coding $300 |
| <BR> |
Line Break |
The contents of your page<BR>The contents of your
page |
The contents of your page
The contents of your page |
| <B> |
Bold |
<B>Example</B> |
Example |
<CENTER>
</CENTER> |
center
end center |
<CENTER>This will center your contents</CENTER> |
This will center your contents
|
<FONT>
</FONT> |
text style
end font |
<FONT FACE="Times New Roman">Example</FONT> |
Example |
<FONT>
</FONT> |
text size
end font |
<FONT SIZE="+4">Example</FONT> |
Example |
<FONT>
</FONT> |
text with color |
<FONT COLOR="#FF0000">Example</FONT> |
Example |
| <H1> |
heading 1 |
<H1>Heading 1 Example</H1> |
Heading 1 Example
|
| <H2> |
heading 2 |
<H2>Heading 2 Example</H2> |
Heading 2 Example
|
| <HR> |
horizontal rule |
<HR WIDTH="50%" SIZE="3"> |
|
| <I> |
italic |
<I>Example</I> |
Example |
| <LI> |
Bullet List |
Example 1:
<MENU>
<LI type="disc">List item 1
<LI type="circle">List item 2
<LI type="square">List item 3
</MENU> |
Example 1:
|
<MARQUEE>
(Internet
Explorer Only) |
scrolling text |
<MARQUEE bgcolor="#ff0000" loop="-1" scrollamount="2"
width="100%"><font color=ffffff>This is an EXAMPLE
of the marquee code. Easy, huh?</MARQUEE> |
|
| <P> |
paragraph |
This is an example displaying the use of the paragraph
tag. <P> This will create a line break and a space between lines. |
This is an example displaying the use of the paragraph
tag
This will create a line break and a space between paragraphs. |
| <TABLE> |
simple table |
<TABLE BORDER="4" CELLPADDING="2" CELLSPACING="2"
WIDTH="100%">
<TR>
<TD>Column 1</TD>
<TD>Column 2</TD>
</TR>
</TABLE> |
|