Computer Science, asked by parul4747, 4 months ago

write the HTML code for the following

please don't span
please give the answer it's urgent​

Attachments:

Answers

Answered by pubgliteplayer2005
0

Answer:

What is a html code? please define it.

Explanation:

I'm not a computer student.

Answered by anindyaadhikari13
3

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 code (Excluding Spaces)

Attachments:
Similar questions