<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<tittle>Tables and Lists</tittle>
</head>
<body>
<ul type = "circle">
<li>This is First item of my unordered list</li>
<li>This is Second item of my unordered list</li>
<ul>
<li>Another one</li>
<li>Another two</li>
<li>Another three</li>
</ul>
<li>This is Third item of my unordered list</li>
</ul>
<ol type="I">
<li>This is First item of my unordered list</li>
<li>This is Second item of my unordered list</li>
<li>This is Third item of my unordered list</li>
</ol>
<!--Table-->
<center><h3><font color = "gray">HTML Table </h3>
<Table>
<Thread>
<tr>
<th> Name </th>
<th> Employee ID </th>
<th> Employee Role </th>
</tr>
</thread>
<tbody>
<tr>
<td> Harry </td>
<td> 34343 </td>
<td> Programmer </td>
</tr>
<tr>
<td> Shubham </td>
<td> 7564</td>
<td> Android Developer </td>
</tr>
</center>
</tbody>
</table>
</body>
</html>