Text & Structure
Use headings for hierarchy, paragraphs for text, lists for items, and tables for tabular data.
Try it
<h1>Blog Post</h1>
<h2>Introduction</h2>
<p>Welcome to my post about structure.</p>
<h2>Groceries</h2>
<ul>
<li>Milk</li>
<li>Bread</li>
<li>Eggs</li>
</ul>
<h2>Table Example</h2>
<table border="1" cellpadding="6">
<thead>
<tr><th>Lang</th><th>Creator</th></tr>
</thead>
<tbody>
<tr><td>HTML</td><td>TBL</td></tr>
<tr><td>CSS</td><td>Håkon</td></tr>
</tbody>
</table>