Intro to HTML - 0101

HTML Tags! - Creating Tables - More Examples
A Table Example
| Displaying Contents of a Record
| | Applicant's Information | Applicant |
| Name | Charles Patridge |
| Phone Number | 860-673-9278 |
| Address | 172 Monce Road |
| | Burlington, CT 06013 |
Here is the code needed to generate the above table
<center>
<table border=10>
<caption align=bottom>A Table Example</caption>
<th colspan=2 bgcolor=white>Displaying Contents of a Record
<tr bgcolor=pink><td align=right>Applicant's Information<td align=left>Applicant </tr>
<tr bgcolor=cyan><td align=right>Name <td align=left>Charles Patridge </tr>
<tr bgcolor=cyan><td align=right>Phone Number <td align=left>860-673-9278 </tr>
<tr bgcolor=cyan><td align=right>Address <td align=left>172 Monce Road </tr>
<tr bgcolor=cyan><td align=right> <td align=left>Burlington, CT 06013</tr>
</table>
</center>