Tables and lists.html
<!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 lists</title>
</head>
<body>
<ul type="square">
<li>This is the first item of my unorederd list</li>
<li>This is the Second item of my unorederd list</li>
<li>This is the Third item of my unorederd list</li>
<ul type="diac">
<li>Another List One</li>
<li>Another List Two </li>
<li>Another List Three </li>
</ul>
</ul>
<ol type="I">
<li>This is the first item of my unorederd list</li>
<li>This is the Second item of my unorederd list</li>
<li>This is the Third item of my unorederd list</li>
</ol>
<!-- Tables -->
<h3>Html Table</h3>
<table>
<thead>
<tr>
<th>Name</th>
<th>Employee Id</th>
<th>Employee Roll</th>
</tr>
</thead>
<tbody>
<tr>
<td>Harry</td>
<td>34343</td>
<td>Programmer</td>
</tr>
<tr>
<td>Rohan Das</td>
<td>3483</td>
<td>HTML Expert</td>
</tr>
<tr>
<td>shubham</td>
<td>7564</td>
<td>Android Developer</td>
</tr>
</tbody>
</table>
</body>
</html>
Comments
Post a Comment