Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 프론트엔드강의
- K디지털기초역량훈련
- table
- th
- 프론트엔드
- Strong
- 내일배움카드
- img
- 배열
- javascript
- thead
- ul
- CSS3
- dd
- tr
- OL
- td
- React강의
- figcaption
- let
- 표
- å
- 국비지원교육
- html
- 패스트캠퍼스
- React & Redux로 시작하는 웹 프로그래밍
- li
- form
- tbody
- css
Archives
- Today
- Total
web study
표 영역의 그룹화 본문
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>표 영역의 그룹화</title>
</head>
<body>
<h1>표 영역의 그룹화</h1>
<table border="1">
<caption>table 전용 캡션</caption>
<thead>
<tr>
<th></th>
<th>가정용 호스팅</th>
<th>기업용호스팅</th>
</tr>
</thead>
<!-- 표의 바닥글. 브라우저 출력은 tbody 뒤에 출력. 코드 작성은 주로 <thead> 뒤에 작성 -->
<tfoot>
<tr>
<td colspan="3">
지금 가입하면 10% 할인!
</td>
</tr>
</tfoot>
<tbody>
<tr>
<th>디스크 공간</th>
<td>1GB</td>
<td>100GB</td>
</tr>
<tr>
<th>대역폭</th>
<td>5GB / 월</td>
<td>50GB / 월</td>
</tr>
<tr>
<th>이메일 계정</th>
<td>5</td>
<td>10</td>
</tr>
<tr>
<th>서버</th>
<td>공유</td>
<td>가상서버호스팅(VPS)</td>
</tr>
<tr>
<th>지원방법</th>
<td>이메일</td>
<td>전화와 방문</td>
</tr>
</tbody>
</table>
</body>
</html>
표 영역의 그룹화
가정용 호스팅 | 기업용호스팅 | |
---|---|---|
지금 가입하면 10% 할인! | ||
디스크 공간 | 1GB | 100GB |
대역폭 | 5GB / 월 | 50GB / 월 |
이메일 계정 | 5 | 10 |
서버 | 공유 | 가상서버호스팅(VPS) |
지원방법 | 이메일 | 전화와 방문 |
'web > html' 카테고리의 다른 글
다양한 폼 관련 태그들 (0) | 2022.12.28 |
---|---|
폼기본 form (0) | 2022.12.28 |
행병합 rowspan (0) | 2022.12.27 |
열병합 colspan (0) | 2022.12.27 |
표의소제목 th (0) | 2022.12.27 |