Making a table with border using html Example 1

Simple program of html to make a table.

<html>
<head>
<title> BloggingSimplified </title>
</head>
<body>
<table border="10">
<tr>
<td rowspan="2"></td>
<td colspan="2"> Average </td>
<td rowspan="2"> Red Eyes </td>
</tr>
<tr>
<td>Height</td>
<td>Weight</td>
</tr>
<tr>
<td>Males</td>
<td>19</td>
<td>0.003</td>
<td>40%</td>
</tr>
<tr>
<td>Females</td>
<td>17</td>
<td>0.002</td>
<td>43%</td>
</tr>
</table>
</body>
</html>

 

Leave a Reply

Your email address will not be published.