1. Table

(1) 기본 요소

<td> <th>
<tr>  <!--table_row (행)-->
<table>  <!--표-->

(2) 추가 요소

<caption> <!--표의 제목, <td>가 아닌 <th>사용 -->
<thead> <!--제목 행을 그룹-->
<tfoot> <!--바닥행을 그룹, 어디에 선언하든 가장 아래 표를 의미-->
<tbody> <!--본문행을 그룹-->
<thead>
	<tr>
		<th>
			Month
		</th>
	</tr>
</thead>
<tbody>
	<tr>
		<td> a </td>
		<td> b </td>
		<td> c </td>
	</tr>
</tbody>

(3) 병합

<tr>
	<td colspan = "2"> sum </td>
</tr>
<tr>
	<td> January </td>
	<td rowspan = "2"> $100 </td>
</tr>

<aside> 💡 colgroup, col, scope, headers?

</aside>

참고문헌

비전공자를 위한 HTML/CSS