- HTML caption tag
- HTML caption 태그, HTML 테이블 캡션, 테이블 제목
예시
<style>
table { border-collapse: collapse; }
th, td { border: 1px solid black; text-align: right; }
</style>
<table>
<caption>월별 저축액</caption>
<tr>
<th>월</th>
<th>저축금액</th>
</tr>
<tr>
<td>1월</td>
<td>100원</td>
</tr>
</table>