Posted on October 22, 2024, 1:10 pm
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tables in HTML</title>
</head>
<body>
<h1>Simple Table <mark>5x6</mark> in HTML</h1>
<p>That is 5rows and 6 columns</p>
<hr>
<!-- table starts -->
<table border="1" width="100%">
<!-- table header starts -->
<tr>
<th>sno</th>
<th>name</th>
<th>parentage</th>
<th>Gender</th>
<th>Address</th>
<th>Phone No</th>
</tr>
<!-- table header ends -->
<tr>
<td>1</td>
<td>Amina</td>
<td>Gh Mohiuddin</td>
<td>Female</td>
<td>Baramulla</td>
<td>9988554477</td>
</tr>
<tr>
<td>sno</td>
<td>name</td>
<td>parentage</td>
<td>Gender</td>
<td>Address</td>
<td>Phone No</td>
</tr>
<tr>
<td>sno</td>
<td>name</td>
<td>parentage</td>
<td>Gender</td>
<td>Address</td>
<td>Phone No</td>
</tr>
<tr>
<td>sno</td>
<td>name</td>
<td>parentage</td>
<td>Gender</td>
<td>Address</td>
<td>Phone No</td>
</tr>
<tr>
<td>sno</td>
<td>name</td>
<td>parentage</td>
<td>Gender</td>
<td>Address</td>
<td>Phone No</td>
</tr>
</table>
<!-- table ends -->
</body>
</html>
No replies yet. Be the first to reply!