태그 바로 뒤에 테이블 내부에 추가됩니다.
예시
다음 코드를 실행하여 HTML에 캡션이 있는 테이블을 만들 수 있습니다.
<!DOCTYPE html>
<html>
<head>
<style>
table, td, th { border: 1px solid black; }
</style>
</head>
<body>
<table>
<caption>Our Technologies</caption>
<tr>
<th>IDE</th>
<th>Database</th>
</tr>
<tr>
<td>NetBeans IDE</td>
<td>MySQL</td>
</tr>
</table>
</body>
</html>
출력