Day2-Exercise-7(To Represent Tables)
<!To Represent Tables>
<html>
<head>
table
</head>
<bod>
<table style="width:50%">
<tr>
<th>First name</th>
<th>last name </th>
<th>Age</th>
</tr>
<tr>
<td>siva</td>
<td>raman</td>
<td>41</td>
</tr>
<tr>
<td>perumal</td>
<td>siva</td>
<td>73</td>
</tr>
</body>
</table>
<html>
<head>
table
</head>
<bod>
<table style="width:50%">
<tr>
<th>First name</th>
<th>last name </th>
<th>Age</th>
</tr>
<tr>
<td>siva</td>
<td>raman</td>
<td>41</td>
</tr>
<tr>
<td>perumal</td>
<td>siva</td>
<td>73</td>
</tr>
</body>
</table>
Comments
Post a Comment