today i am going to say you a simple way in which you can create a table in HTML
1.open note pad
2.type the following code
<html>
<head>
<title>a simple table</title>
</head>
<body>
a sample table
<table border="3">
<tr><th>my name</th><th>my passion</th><th>standard</th></tr>
<tr><td>michale</td><td>blogging</td><td>10th</td></tr>
<tr><td>arun</td><td>eating</td><td>10th</td></tr>
<tr><td>mri</td><td>blogging</td><td>10th</td></tr>
</table>
</body>
</html>
3. save as any name with .html extinsion
1.open note pad
2.type the following code
<html>
<head>
<title>a simple table</title>
</head>
<body>
a sample table
<table border="3">
<tr><th>my name</th><th>my passion</th><th>standard</th></tr>
<tr><td>michale</td><td>blogging</td><td>10th</td></tr>
<tr><td>arun</td><td>eating</td><td>10th</td></tr>
<tr><td>mri</td><td>blogging</td><td>10th</td></tr>
</table>
</body>
</html>
3. save as any name with .html extinsion
your output will be similar to this
*you can change the data as you want
!!!thanks!!!