table in web development
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tables and list</title>
</head>
<body>
<h3>HTML table</h3>
<table>
<thead>
<tr>
<th>Name</th>
<th>Employee Id</th>
<th>Employee Role</th>
</tr>
<tbody>
<tr>
<td>shailesh</td>
<td>34831</td>
<td>programmer</td>
</tr>
<tr>
<td>Anup</td>
<td>93651</td>
<td>docter</td>
</tr>
<tr>
<td>Anchal</td>
<td>53651</td>
<td>andriod development</td>
</tr>
</tbody>
</thead>
</table>
</body>
</html>
Comments
Post a Comment