Computer Science, asked by brrosiis, 5 months ago

Ques. -- write the html coding for the above output.

please give me correct answer.
wrong answer will be reported and correct answer will got points and thanks.
from two answers good answer will be marked as brilliant.
please jisko aata h wo hi likhe.​

Attachments:

Answers

Answered by anindyaadhikari13
2

This is the html code for this table.

This cannot be solved by writing only html. It needs css. I have added that too.

For verification, check out the attachment.

<!DOCTYPE html>

<html>

<head>

<title>

Tables

</title>

<meta charset="UTF-8"/>

<style>

table, tr, td

{

border: 1px solid black;

width: 408px;

text-align: center;

border-collapse: collapse;

empty-cells: hide;

}

td.first

{

border-top: 2px solid black;

border-right: 2px solid black;

border-left: 2px solid black;

}

td.others, td.last

{

border-left: 2px solid black;

border-right: 2px solid black;

}

td.last

{

border-bottom: 2px solid black;

}

</style>

</head>

<body>

<table>

<tr>

<td class="first" style="width: 408px;">1

</tr>

</table>

<table>

<tr>

<td class ="others" style="width: 204px;">2

<td class="others" style="width: 204px;">3

</tr>

</table>

<table>

<tr>

<td class="others" style="width: 136px;">4

<td class="others" style="width: 136px;">5

<td class="others" style="width: 136px;">6

</tr>

</table>

<table>

<tr>

<td class="last" style="width: 102px;">7

<td class="last" style="width: 102px;">8

<td class="last" style="width: 102px;">9

<td class="last" style="width: 102px;">10

</tr>

</table>

</body>

</html>

Attachments:
Answered by Anonymous
2

Answer:

69 is your answer

pls mark as brainliest pls pls pls pls pls pls pls

Similar questions