<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lists and table</title>
</head>
<body>
<!-- type is the ul attribute of the list here -->
<!-- <ul type="circle"> -->
<ul type="square">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
<!-- <ul type="circle"> -->
<!-- <ol type="I"> -->
<!-- <ol type="i"> -->
<!-- <ol type="A"> -->
<ol type="a">
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ol>
<!-- table in the html -->
<table>
<!-- you can put header here -->
<thead>
<tr>
<th>Name</th>
<th>Id</th>
<th>Emaild</th>
</tr>
</thead>
<!-- you can body here -->
<tbody>
<tr>
<td>Vishal u</td>
<td>123</td>
<td>vishal.asda@sdfsdf.com</td>
</tr>
</tbody>
</table>
</body>
</html>
Thanks you for commenting your questions. I will see question and respond you.