테이블 정의
1. 일반 테이블 (table)
- table_wrap 내에 기재
- Caption, colgroup, class는 디자인에 따라 다름
<div class="table_wrap">
<table>
<caption>Caption</caption>
<colgroup>
<col width="15%">
</colgroup>
<thead>
<tr>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
</div>