HTML Tables

by Giorgio Malvone

HTML

<!DOCTYPE html>
<!-- College student learning HTML tables -->
<title>Table Test!</title>

<table border="5px">
    <thead>
        <tr>
            <th colspan="2"> Cheeses </th>
        </tr>
        <tr>
            <th>Cheese Type</th>
            <th>Cheese Amount</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Edam</td>
            <td>12</td>
        </tr>
        <tr>
            <td>Red Leicester</td>
            <td>64</td>
        </tr>
        <tr>
            <td>Cheedar</td>
            <td>47</td>
        </tr>
    </tbody>
</table>