HTML Tutorial 11

Prepared by: Anthony Larrain


Tables

Example 1

The following piece of code:

<table> <tr> <td>Data Cell One</td> <td>Data Cell Two</td> </tr> <tr> <td>Data Cell Three</td> <td>Data Cell Four</td> </tr> </table>

Example 2

<table width="50%"> <table width="300">

Example 3

<table width="50%" border="2">

Example 4

<table width="50%" border="2" cellpadding="7" cellspacing="10">

Example 5

<table width="50%" border="2"> <tr> <th>Column1</th> <th>Column2</th> </tr> <tr> <td>Data Cell One</td> <td>Data Cell Two</td> </tr> <tr> <td>Data Cell Three</td> <td>Data Cell Four</td> </tr> </table>
Design Tip

@Anthony Larrain 2005 - 2006

Send Questions or Comments to hci201@yahoo.com