CBSE BOARD X, asked by Ramangupta7770, 1 year ago

Answer the 1st part ... will mark brainliest

Attachments:

Answers

Answered by Anonymous
2

.....................................

Attachments:
Answered by BrainlyYoda
7

Answer:

i)

<!DOCTYPE html>

<html>

<head>

<style>

tr {text-align:center;}

</style>

</head>

<body>

<table border="1px solid black" style="border-collapse:collapse;" width="25%">

<tr>

<td rowspan="3">1<br>4<br></td>

</tr>

<tr>

<td rowspan="3">2<br>5<br></td>

</tr>

<tr>

<td rowspan="3"><br>3<br>6</td>

</tr>

</table>

</body>

</html>

ii)

<!DOCTYPE html>

<html>

<head>

<style>

tr {text-align:center;}

</style>

</head>

<body>

<table border="1px solid black" style="border-collapse:collapse;" width="25%">

<tr>

<td  rowspan="2">1</td>

<td>2</td>

</tr>

<tr>

<td>3</td>

</tr>

</table>

</body>

</html>

(&nbsp) => It is used to create multiple spaces.

rowspan => Number of cells it should span.

Similar questions