<table>
    <thead>
        <tr>
            <th scope="col">메뉴</th>
            <th scope="col">가격</th>
        </tr>        
    </thead>
    <tr>
        <td>라면</td>
        <td>5,000</td>
    </tr>
    <tr>
        <td>김밥</td>
        <td>4,000</td>
    </tr>
</table>
th, td {
    padding: 0.5em 1em;
    border: 1px solid gray;
}
thead {
    background-color: #e6e6e6;
}
실제 적용된 모습
<table>
    <thead>
        <tr>
            <th rowspan="2" scope="col">자동차 모델</th>
            <th colspan="2" scope="colgroup">주요 정보</th>
        </tr>
        <tr>
            <th scope="col">제조사</th>
            <th scope="col">연식</th>
        </tr>
    </thead>
    <tr>
        <td>아반떼</td>
        <td>현대</td>
        <td>2,020 년도</td>
    </tr>
    <tr>
        <td>소렌토</td>
        <td>기아</td>
        <td>2,022 년도</td>
    </tr>
</table>
실제 적용된 모습