Tag |
Code
Example |
Browser
View |
| <LI> |
Example 1:
<MENU>
<LI type="disc">List item 1
<LI type="circle">List item 2
<LI type="square">List item 3
</MENU>
Example 2:
<OL type="i">
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL> |
Example 1:
-
List item 1
-
List item 2
-
List item 3
Example 2:
-
List item 1
-
List item 2
-
List item 3
-
List item 4
|
<MARQUEE>
(Internet
Explorer) |
<MARQUEE
bgcolor="#CCCCCC" loop="-1" scrollamount="2" width="100%">Example Marquee</MARQUEE> |
You can change the background color of your MARQUEE by changing the HTML color code #CCCCCC to the left. The loop determines how many times the words will scroll and is set to -1, which is indefinite. It can be set to whatever you would like. The SCROLLAMOUNT determines the speed your text will scroll. |
| <MENU> |
<MENU>
<LI type="disc">List item 1
<LI type="circle">List item 2
<LI type="square">List item 3
</MENU> |
-
List item 1
-
List item 2
-
List item 3
|
| <OL> |
Example 1:
<OL>
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL>
Example 2:
<OL type="a">
<LI>List item 1
<LI>List item 2
<LI>List item 3
<LI>List item 4
</OL> |
Example 1:
-
List item 1
-
List item 2
-
List item 3
-
List item 4
Example 2:
-
List item 1
-
List item 2
-
List item 3
-
List item 4
|
| <OPTION> |
<FORM METHOD=post
ACTION="/cgi-bin/example.cgi">
<CENTER>
Select an option:
<SELECT>
<OPTION>option 1
<OPTION SELECTED>option 2
<OPTION>option 3
<OPTION>option 4
<OPTION>option 5
<OPTION>option 6
</SELECT><BR>
</CENTER>
</FORM> |
|
| <P> |
This is an example displaying
the use of the paragraph tag. <P> This will create a line break and
a space between lines.
Attributes:
Example 1:<BR>
<BR>
<P align="left">
This is an example<BR>
displaying the use<BR>
of the paragraph tag.<BR>
<BR>
Example 2:<BR>
<BR>
<P align="right">
This is an example<BR>
displaying the use<BR>
of the paragraph tag.<BR>
<BR>
Example 3:<BR>
<BR>
<P align="center">
This is an example<BR>
displaying the use<BR>
of the paragraph tag. |
This is an example displaying the
use of the paragraph tag.
This will create a line break and
a space between lines.
Attributes:
Example 1:
This is an example
displaying the use
of the paragraph tag.
Example 2:
This is an example
displaying the use
of the paragraph tag.
Example 3:
This is an example
displaying the use
of the paragraph tag. |
| <SMALL> |
<SMALL>Example</SMALL> |
Example
|
| <STRONG> |
<STRONG>Example</STRONG> |
Example |
| <TABLE> |
Example 1:
<TABLE BORDER="4"
CELLPADDING="2" CELLSPACING="2" WIDTH="100%">
<TR>
<TD>Column 1</TD>
<TD>Column 2</TD>
</TR>
</TABLE>
Example 2: (Internet Explorer)
<TABLE BORDER="2" BORDERCOLOR="#336699" CELLPADDING="2" CELLSPACING="2" WIDTH="100%">
<TR>
<TD>Column 1</TD>
<TD>Column 2</TD>
</TR>
</TABLE>
Example 3:
<TABLE CELLPADDING="2" CELLSPACING="2" WIDTH="100%">
<TR>
<TD BGCOLOR="#CCCCCC">Column 1</TD>
<TD BGCOLOR="#CCCCCC">Column 2</TD>
</TR>
<TR>
<TD>Row 2</TD>
<TD>Row 2</TD>
</TR>
</TABLE>
|
Example 1:
Example 2:
Example 3:
| Column 1 |
Column 2 |
| Row 2 |
Row 2 |
|
<TD> (column) |
<TABLE BORDER="2" CELLPADDING="2"
CELLSPACING="2" WIDTH="100%">
<TR>
<TD>Column 1</TD>
<TD>Column 2</TD>
</TR>
</TABLE> |
|
<TH> (column heading) |
<DIV
align="center"><TABLE>
<TR>
<TH>Column 1</TH>
<TH>Column 2</TH>
<TH>Column 3</TH>
</TR>
<TR>
<TD>Row 2</TD>
<TD>Row 2</TD>
<TD>Row 2</TD>
</TR>
<TR>
<TD>Row 3</TD>
<TD>Row 3</TD>
<TD>Row 3</TD>
</TR>
<TR>
<TD>Row 4</TD>
<TD>Row 4</TD>
<TD>Row 4</TD>
</TR>
</TABLE>
</DIV> |
| Column 1 |
Column 2 |
Column 3 |
| Row 2 |
Row 2 |
Row 2 |
| Row 3 |
Row 3 |
Row 3 |
| Row 4 |
Row 4 |
Row 4 |
|
| <TITLE> |
<TITLE>Title of your
webpage</TITLE> |
Put this tag in the <head< of your page. Title will be
visable in the title bar of the browser when visiting the page. |
<TR> (row) |
<TABLE BORDER="2" CELLPADDING="2"
CELLSPACING="2" WIDTH="100%">
<TR>
<TD>Column 1</TD>
<TD>Column 2</TD>
</TR>
</TABLE> |
|
| <U> |
<U>Example</U> |
Example |
| <UL> |
Example 1:<BR>
<BR>
<UL>
<LI>List item 1
<LI>List item 2
</UL>
<BR>
Example 2:<BR>
<UL type="disc">
<LI>List item 1
<LI>List item 2
<UL type="circle">
<LI>List item 3
<LI>List item 4
</UL>
</UL> |
Example 1:
Example 2:
|