NevLabs

Under Construction

NevLabs

Under Construction

NevLabs

Under Construction

NevLabs

Under Construction

NevLabs

Under Construction

Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Sunday, October 21, 2012

HTML program to illustrate table tag and its attributes


<html>
<body>
<h4>Cell that spans two columns:</h4>
<table border="1" bgcolor="green">
<tr>
 <th>Name</th>
<th colspan="2">telephone</th>
</tr>
<tr>
<td>Bill Gates</td>
<td>555 77 854</td>
<td>555 77 855</td>
</tr>
</table>
<h4>Cell that spans two rows:</h4>
<table border ="1" bgcolor="red">
<tr>
 <th> First Name:</th>
<td>Bill Gates</td>
</tr>
<tr>
<th rowspan="2">Telephone:</th>
<td>555 77 854</td>
</tr>
<tr>
<td> 555 77 855</td>
</tr>
</table>
</body>
</html>

Output