Computer Science, asked by dishantsinghom, 1 year ago

give its full proper coding

Attachments:

siddhartharao77: is it html table?
dishantsinghom: yes

Answers

Answered by roopkor23
0
<table border="1">
<tr>
<td>1</td>
<td>2</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>3</td>
</tr>
<tr>
<td>   <td>
<td>   </td>
<td>6</td>
</tr>
</table>



hope it helps 
if yes.....pls mark it brainliest


Answered by siddhartharao77
0
<html>
<head>

<style>
table
{
border-collapse:collapse;
text-align:center;
}
</style>
</head>


<body>
<table style="border:1px solid grey" width="20%">
<tr>
<td>1</td>
<td>2</td>
<td></td>
</tr>


<tr>
<td>4</td>
<td>5</td>
<td>3</td>
</tr>


<tr>
<td></td>
<td></td>
<td>6</td>
</tr>


</table>
</body>
</html>


<!-- Hope this helps!--->
Attachments:

siddhartharao77: :-))
Similar questions