Computer Science, asked by saxenasai2, 7 months ago

Write HTML Code for the following table:

Attachments:

Answers

Answered by gs30072005
1

Answer:

<html>

<head>

<title>

Whatever you want

</title>

</head>

<body>

<table>

<tr>

<th>Average </th>

</tr>

<tr>

<th>Gender</>

<th>Height</th>

<th>Weight</th>

</tr>

<tr>

<td>Males</td>

<td>1.9</td>

<td>0.003</td>

</tr>

<tr>

<td>Females</td>

<td>1.7</td>

<td>0.002</td>

</tr>

</table>

</body>

</html>

Similar questions