Section 1 - Introduction
Section 2 - Basics
Section 3 - Next Level
Lists
Basic Tables
Table basics
Rows and data
Borders
Width
Cellpadding & spacing
Alignment
Rowspan & colspan
You Try It
Advanced Text
Marquee
Meta
Sounds
Comments
Section 4 - Advanced
Section 5 - Publishing
Section 6 - Extras
Appendices
|
You try it!
Idea: Incorporate tables into a document.
Here's an example: The penguin story was getting a bit long, so I took some of the information and compiled it into a table. To see this appropriately, you will need the picture penga.jpg.
<html> <head>
<title> My Penguin Table </title>
</head>
<body bgcolor="#ccccff" text="#006666" link="#0033ff" vlink="#00cccc">
<table border=1 cellpadding=3 cellspacing=1>
<tr>
<td rowspan=3>
<img src="penga.jpg">
</td>
<td> Last known location: Locker 529 </td>
</tr>
<tr>
<td> Crime: Kidnapping, holding hostages, forced hatchings </td>
</tr>
<tr>
<td> Motives: Criminal insanity, boredom </td>
</tr>
<tr>
<td colspan=2> Approach with extreme caution. Penguin may be chilled and slippery.
</td>
</tr>
</table>
</body> </html> |
You now should work on your own webpage. Add a table onto your page where appropriate.
|