write the html code to generate the following html table
Answers
Hope it helps you :-)
!!!!!!!!
Answer:
This is the code:-
<!DOCTYPE html>
<html>
<head>
<title>
table
</title>
<style>
table{
border-collapse:collapse;
}
</style>
</head>
<body>
<table align="center" border="1" cellpadding="5" cellspacing="5" height="200" width="400">
<tr>
<tr>
<td>1</td>
<td>4</td>
<td> </td>
</tr>
<tr>
<td>2</td>
<td>5</td>
<td>3</td>
</tr>
<tr>
<td>
</td>
<td></td>
<td>6</td>
</tr>
</tr>
</table>
</body>
</html>
The Output of the code:- We will see the required table.