<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<table border="2" height="300" width="300">
<caption>this example table</caption>
<thead>
<tr align="center">
<th>name</th>
<th>roll</th>
<th>age</th>
</tr>
</thead>
<tbody>
<tr align="center">
<td>Ujjal</td>
<td>1</td>
<td>23</td>
</tr>
<tr align="center">
<td>Abhijit</td>
<td>2</td>
<td>30</td>
</tr>
<tr align="center">
<td>Mithu</td>
<td>3</td>
<td>41</td>
</tr>
</tbody>
</table>
</body>
</html>
0 Comments