Create a Web page, which should contain a table having two rows and two columns.
Code
<html>
<body>
<table border="1" height="100%" width="100%">
<tr>
<td> 1</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td> 4</td>
</tr>
</table>
</body>
</html>
Output
Code
<html>
<body>
<table border="1" height="100%" width="100%">
<tr>
<td> 1</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td> 4</td>
</tr>
</table>
</body>
</html>
Output
1 | 2 |
3 | 4 |
Comments
Post a Comment