Computer Science, asked by Anonymous, 10 months ago

Write the HTML code to generate the webpage as shown below having table in the given

style.


please please please please please please please please please please please please please please please​

Attachments:

Answers

Answered by AshMaXSiRa
3

Answer

use concept of cellspacing and cellpadding and cell merging

Answered by Anonymous
6

Answer:

table tag

Explanation:

<html>

<head>

<title> assignment 5 </title>

</head>

<body>

<center>

<table border>

A test table with merged cells

<tr>

<th rowspan=2></th>

<th colspan=2>Average</th>

<th rowspan="2">Red eyes</th>

</tr>

<tr>

<th>height</th>

<th>weight</th>

</tr>

<tr>

<th>Males</th>

<td>1.9</td>

<td>0.003</td>

<td>40%</td>

</tr>

<tr>

<th>Females</th>

<td>1.7</td>

<td>0.002</td>

<td>43%</td>

</center>

</table>

</body>

</html>

Attachments:
Similar questions