There are a few tags to keep in mind for creating tables in HTML:
<table> tag to wrap the table
<thead> tag to wrap the table head
<tbody> tag to wrap the body of the table
<tr> (table row) tag to create rows
<td> (data table) tag to create cells
<th> tag (table head) to create a title in the header
The most important tags to remember are the <table>, <tr>, and <td> tags. While the other tags are additional or optional, may or may not be used.
Below is an example of creating a simple table using html code
===============
<!DOCTYPE html>
<html>
<head>
<title>Table HTML</title>
</head>
<body>
<table>
<tr>
<td>Row 1 column 1</td>
<td>Row 1 column 2</td>
</tr>
<tr>
<td>Row 2 column 1</td>
<td>Row 2 column 2</td>
</tr>
</table>
</body>
</html>
================