Now we are going to generate tables in HTML
First use the table tag <table border=1>
border=1 means the border of the table and its size
<tr> table row <td>table data</td> </tr>
now the code is as
</table>
<html>
<body>
<table border="1">
<tr>
<td><h1>Roll#</h1></td><td><h1>Name</h1></td><td><h1>E-mail</h1></td>
</tr>
<tr>
<td>1323</td><td>Quratt ul ain </td><td>Quratt786@live.com</td>
</tr>
<tr>
<td>1171</td><td>Ubaid ur rehman</td><td>obaid1986@live.com</td>
</tr>
</table>
</body>
</html>
Monday, October 11, 2010
HTML Tables:
9:44 AM
GCbioinfo
0 comments:
Post a Comment