Lists can be used to organize any list of items.
<ul>
<li>List Item</li>
<li>Another List Item</li>
</ul>
<ol>
<li>List Item</li>
<li>Another List Item</li>
</ol>
Tables are a way to represent complex information in a grid format.
Tables are made up of header row(s) with the column names, and body rows with the data:
<table>
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
</tr>
</thead>
<tbody>
<tr>
<td>Steph</td>
<td>Curry</td>
</tr>
<tr>
<td>Tina</td>
<td>Fey</td>
</tr>
</tbody>
</table>
You can add comments to your code that will not be seen by the browser, but only visible when viewing the code.
<!-- Comment goes here -->