Table

A table is a good way to display data in a structured way.


<div class="monster-table-container">
    <table class="monster-table">
        <thead>
        <tr>
            <th>Name</th>
            <th>Number</th>
        </tr>
        </thead>
        <tbody>
        <tr>
            <td>Jackie</td>
            <td>012345</td>
        </tr>
        <tr>
            <td>Lucy</td>
            <td>112346</td>
        </tr>
        <tr>
            <td>David</td>
            <td>493029</td>
        </tr>
        <tr>
            <td>Kerry</td>
            <td>395499</td>
        </tr>
        <tr>
            <td>Steve</td>
            <td>002458</td>
        </tr>
        </tbody>
    </table>
</div>

Now you can see the result in the browser:

Name Number
Jackie 012345
Lucy 112346
David 493029
Kerry 395499
Steve 002458