Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
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 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter14 : table 본문

WEB.HTML

chapter14 : table

GAWON 2023. 5. 18. 09:19
<!--
테이블 태그

1.표를 만들 때 사용
2.<table></table> 태그 사용
3.행을 만들 때 <tr></tr> 태그 사용
4.열을 만들 때 <td></td> 태그 사용
5.제목 열을 만들 때 <th></th> 태그 사용
6.행 병합은 rowspan 속성 이용 (rowspan="2" ("합칠 칸 수")
7.열 병합은 colspan 속성 이용

- cellpadding : 셀 내부 간격
*cellspacing : 셀과 셀 사이 간격
-->

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>3행 2열 테이블</h1>
<table border="1">
<tr style="background-color:maroon;">
<th>이름</th>
<th>나이</th>
</tr>
<tr>
<td>김씨</td>
<td>10</td>
</tr>
<tr>
<td>이씨</td>
<td>20</td>
</tr>
</table>

</body>
</html>

'WEB.HTML' 카테고리의 다른 글

chapter16 : a_tag  (0) 2023.05.18
chapter15 : font  (0) 2023.05.18
chapter13 : img_tag  (0) 2023.05.18
chapter12 : mata_tag  (0) 2023.05.18
chapter11 : ol_tag  (0) 2023.05.18