chart

関東の県庁所在地
都道府県 市区町村
東京都 新宿区
埼玉県 さいたま市
神奈川県 横浜市
<div class="chart">
<table>
    <caption>関東の県庁所在地</caption>
    <thead>
        <tr>
            <th>都道府県</th>
            <th>市区町村</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <th>東京都</th>
            <td>新宿区</td>
        </tr>
        <tr>
            <th>埼玉県</th>
            <td>さいたま市</td>
        </tr>
        <tr>
            <th>神奈川県</th>
            <td>横浜市</td>
        </tr>
    </tbody>
</table>
</div>