ElementalCSS

Tables

This is a table caption
Title Rating Released
Harvey 4.0 1950
The Shining 4.2 1980
Metropolis 4.1 1927
<table>
    <caption>This is a table caption</caption>
    <thead>
        <tr>
            <th>Title</th>
            <th>Rating</th>
            <th>Released</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Harvey</td>
            <td>4.0</td>
            <td>1950</td>
        </tr>
        <tr>
            <td>The Shining</td>
            <td>4.2</td>
            <td>1980</td>
        </tr>
        <tr>
            <td>Metropolis</td>
            <td>4.1</td>
            <td>1927</td>
        </tr>
    </tbody>
</table>