Basic Introduction to tables:
Learning to work with tables is easy
|
Learning to manipulate webpage content using tables is essential. There are two basic sections within a table. The tr or table row and the td or data cell. First we will take a look at some very basic tables.
|
Simple One Cell Table
<table width="150" border="2">
<tr>
<td align="center" valign="top">
1 cell
</td>
</tr>
</table>
|
|
2 Columns 1 Row Table
<table width="150" border="2">
<tr>
<td align="center" valign="top">
2 cells
</td>
<td align="center" valign="top">
2 cells
</td>
</tr>
</table>
|
|
|
1 Column 2 Rows Table
<table width="150" border="2">
<tr>
<td align="center" valign="top">
2 cells
</td>
</tr>
<td align="center" valign="top">
2 cells
</td>
<tr>
</tr>
</table>
|
|
2 Columns 2 Rows Table
<table width="150" border="2">
<tr>
<td align="center" valign="top">
4 cells
</td>
<td align="center" valign="top">
4 cells
</td>
</tr>
<tr>
<td align="center" valign="top">
4 cells
</td>
<td align="center" valign="top">
4 cells
</td>
</tr>
</table>
|
|
4 cells
|
4 cells
|
|
4 cells
|
4 cells
|
|
|
Informative Articles
Article Index
Popular Articles:
Protect Your Online Accounts from Phishing Scams
How to Write a Great Article
Ways to Bring Traffic to Your Website
How to Manage Directory Submissions
Search Engine Optimization (SEO) Using Keywords and Phrases
Copyright Your Content - Things you may like to know about copyrights
Protect Yourself From Identity Theft
Adding Content To Your Site Every Day
QUESTION OR COMMENT? CONTACT ME
Join The Honest Information Mailing List
Back to Top
§
Home