



<script></body> 위에 적어야 함async : 스크립트의 비동기적(Asynchronously) 실행 여부 (Boolean, src 속성 필수)defer : 문서 파싱 (구문 분석) 후 작동 여부 (Boolean, src 속성 필수)src : 참조할 외부 스크립트 URL (포함된 스크립트는 무시)type : MINE 타입 (text/javascript, 기본값)<noscript><noscript>
<p>자바스크립트를 지원하지 않는 환경입니다.</p>
</noscript>
<table> , <tr> , <th> , <td><table> : 데이터 표, table 속성 (block 요소와 비슷)<tr> : 행 (줄), table-row 속성 <th> , <td> : 열(칸) , table-cell 속성 (제목/데이터)<!-- 행2, 열2 테이블 -->
<table>
<tr> <!-- 행 -->
<th>...</th> <!-- 열 -->
</tr>
<tr>
<td>...</td>
</tr>
</table>
<th>abbr : 열에 대한 간단한 설명headers : 자신이 종속되어 있는 상위 개념의 열에 연결을 할때 쓰는 속성 (id 값과 연결)colspan : 병합하려는 열의 수 (number) (수평 병합)rowspan : 병합하려는 행의 수 (number) (수직 병합)scope : 자신이 누구의 '헤더' 인지 명시"col" : 자신의 열 (헤더가 위에 있음)"colgroup" : 모든 열row" : 자신의 행 (헤더가 왼쪽에 있음)"rowgroup" : 모든 행"auto" : 기본값<td>headers : 자신이 종속되어 있는 상위 개념의 열에 연결을 할때 쓰는 속성 (id 값과 연결) (<th> 와 연결)colspan : 병합하려는 열의 수 (number) (수평 병합)rowspan : 병합하려는 행의 수 (number) (수직 병합)<caption><table> 당 하나의 <caption> 만 사용 가능<table>
<caption>표 제목</caption>
<tr>
...
</tr>
</table>
<colgroup>, <col><col>) 과 그의 집합 (<colgroup>)<caption> 밑에 정의span : 연속되는 열 수 (number)<table>
<caption>제목</caption>
<colgroup>
<col style="background-color: red;">
<col>
</colgroup>
<tr>
<td>...</td> <!-- red -->
</tr>
<tr>
<td>...</td> <!-- no color -->
</tr>
</table>
<table>
<caption>제목</caption>
<colgroup>
<col style="background-color: red;" span="2">
</colgroup>
<tr>
<td>...</td> <!-- red -->
</tr>
<tr>
<td>...</td> <!-- red -->
</tr>
</table>
<thead> , <tbody> , <tfoot><table>
<thead>
<tr>...</tr>
</thead>
<tbody>
<tr>...</tr>
</tbody>
</table>
프론트엔드 올인원 패키지 바로가기 -> https://bit.ly/3m0t8GM