HTML and CSS Reference
In-Depth Information
Table basics
It is reasonably straightforward to create a simple table when hand-coding markup. The
bare essentials of a single table include an opening table tag, followed by at least one
table row (a tr ), followed by at least one table cell (a td , meaning “table data"). Here's
an example:
<table>
<tr>
<td>Some data</td>
</tr>
</table>
That's about as minimalist as you can get when it comes to creating tables, but you're
unlikely to create a table with only one item of data, so let's make things a touch more
Search WWH ::




Custom Search