Using Pure CSS framework to make table


# Make Model Year
1 Honda Accord 2009
2 Toyota Camry 2012
3 Hyundai Elantra 2010
the code :
<link href="https://unpkg.com/purecss@1.0.0/build/pure-min.css" rel="stylesheet"></link>

<br />
<table class="pure-table">
    <thead>
<tr>
            <th>#</th>
            <th>Make</th>
            <th>Model</th>
            <th>Year</th>
        </tr>
</thead>

    <tbody>
<tr>
            <td>1</td>
            <td>Honda</td>
            <td>Accord</td>
            <td>2009</td>
        </tr>
<tr>
            <td>2</td>
            <td>Toyota</td>
            <td>Camry</td>
            <td>2012</td>
        </tr>
<tr>
            <td>3</td>
            <td>Hyundai</td>
            <td>Elantra</td>
            <td>2010</td>
        </tr>
</tbody>
</table>

Related Posts Plugin for WordPress, Blogger...