Computer Science, asked by sheetalarya108pagvdw, 1 year ago

write html code to create table given above

Attachments:

Answers

Answered by nitish8089
4
....code......
<!DOCTYPE html>
<html>
<head>
<title>Table</title>
<meta charset="UTF-8">
<meta name="description" content="Table-formation">
<meta name="author" content="Nitish Kumar Jha">
<meta name="keyword" content="HTML,CSS">
<meta name="viewport" content="width=device-width,initial-scale="1.0">
</head>
<body>
<table border="5px" bgcolor="linen">
<tr>
<td colspan="3">Title Goes Here</td>
<td>A</td>
<td>B</td>
</tr>
<tr>
<td rowspan="3" align="center">c</td>
<td>D</td>
<td>E</td>
<td>F</td>
<td>G</td>
</tr>
<tr>
<td></td>
<td colspan="2" align="center">I</td>
<td rowspan="2"align="center" >J</td>
</tr>
<tr>
<td>K</td>
<td>L</td>
<td>M</td>
</tr>
<tr>
<td>N</td>
<td colspan="4" align="center">O</td>
</tr>
</table>
</body>
</html>
....................................................
output \: screen shot \: check \: out....
Attachments:

Anonymous: which app you use dear?
nitish8089: Sololearn
Anonymous: ☺thank you
nitish8089: welcome
Similar questions