Saturday, May 9, 2009
WORK IN TABLES
TABLES..
Tables are defined with the <table> tag. A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag). The letters td stands for "table data," which is the content of a data cell. A data cell can contain text, images, lists, paragraphs, forms, horizontal rules, tables, etc.
examples..
<html>
<body>
<Table border=1>
<tr>
<td>
<Name>
</td>
<td>
<class>
</td>
</tr>
</table>
</body>
</html>
Headings in Table...
<html>
<body>
<Table border=2>
<tr>
<th>Name</th>
</tr>
<tr>
<td>WAQAS SHAIKH</td>
</tr>
</table>
</body>
</html>
No response to “WORK IN TABLES”
Post a Comment