Computer Science, asked by parul4747, 4 months ago

write the HTML code for the following

please it's urgent
please don't span​

Attachments:

Answers

Answered by anindyaadhikari13
2

Question:-

➡ Write HTML code for the given table.

Code:-

➡ This is the required code for the table given below. I have also attached an image of output.

<!DOCTYPE html>

<html>

<head>

<style>

table

{

width: 200px;

border-collapse: collapse;

text-align: center;

}

tr

{

height: 25px;

}

</style>

</head>

<body>

<table align="center" border=1>

<tr>

<td colspan=2>1

<td>2

<td>3

</tr>

<tr>

<td>4

<td>5

<td>6

<td rowspan=3>7

</tr>

<tr>

<td colspan=3>8

</tr>

<tr>

<td>9

<td>10

<td>11

</tr>

</table>

</body>

</html>

Total:- 40lines of codecode (Excluding spaces)

Attachments:
Answered by roopashree11mc
0

Answer:

follow me

Explanation:

then I will answer

Similar questions