<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<p>Paragraph / Body text</p>
<p>Example of a <small>small text</small></p>
<p>Example of a <abbr title="abbreviation">abbr</abbr></p>
<p>Example of a <a href="#">link</a></p>

<blockquote>
    <p>Example of a blockquote<br />on multiple lines</p>
</blockquote>

<table>
    <thead>
        <tr>
            <th>Example of a table</th>
        </tr>
    </thead>
    <toby>
        <tr>
            <td>Odd row</td>
        </tr>
        <tr>
            <td>Even row</td>
        </tr>
    </tbody>
    <tfoot>
        <tr>
            <td>We should think about styling tables' footer</td>
        </tr>
    </tfoot>
</table>

<ul>
    <li>List, item 1</li>
    <li>List, item 2</li>
    <li>List, item 3
        <ul>
            <li>List, item 1</li>
            <li>List, item 2</li>
            <li>List, item 3
                <ul>
                    <li>List, item 1</li>
                    <li>List, item 2</li>
                    <li>List, item 3</li>
                </ul>
            </li>
        </ul>
    </li>
</ul>

<ol>
    <li>Ordered list, item 1</li>
    <li>Ordered list, item 2</li>
    <li>Ordered list, item 3
        <ol>
            <li>Ordered list, item 1</li>
            <li>Ordered list, item 2</li>
            <li>Ordered list, item 3
                <ol>
                    <li>Ordered list, item 1</li>
                    <li>Ordered list, item 2</li>
                    <li>Ordered list, item 3</li>
                </ol>
            </li>
        </ol>
    </li>
</ol>
