Tutorial Pg.4
How to add lists and tables
This page will teach you how to add lists and tables to your webpage. First, I will
tell you how to add lists. With lists you can have and ordered list or an unordered list. The difference is that
an order list uses numbers or letters as the bullet, and an unordered list used shapes such as circles and stars. To
add a list you must start with the list tag <OL> for ordered and <UL> for unordered. Then use the tag
<LI>, and add the text you want in the list. If you want you can change to bullet from the default to what
you want by tpying TYPE="n". Some examples are: a for small letters, I for capital roman numerals, 1 for numbers
which is always set to default.
Next are tables. To start out with tables you need the table tag <table>. In the
table tag you can change the border by using border="n".Next you need the table row tag <tr>. Then you must put
in the table cell tag <td>. After all of those tags you can place your text after the TD tag. Make sure that you
close the cell after you are done. After you have put all of the text you want in that row close it with the closing tag,
then start a new row close the table with the closing tag for the table.
<body>
<ol> <li> <li> <li> <li> <li> </ol> Example of Order List
|
<body>
<table> <tr> <td> Add Text Here </td> <td> Add Text Here </td> </tr> </table> </body> Example of a table
|