HTML Table Tag
Full Stack Web Development Courses with Real-time projects Start Now!!
Program 1
<html>
<body>
<table border="2">
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>John</td>
<td>27</td>
</tr>
<tr>
<td>rahul</td>
<td>30</td>
</tr>
</table>
</body>
</html>
If you are Happy with DataFlair, do not forget to make us happy with your positive feedback on Google

