-
Notifications
You must be signed in to change notification settings - Fork 0
/
html-list-table.html
126 lines (119 loc) · 3.46 KB
/
html-list-table.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<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>List / Table</title>
<style>
table, th, td {
border: 1px solid black;
}
thead {
background-color: black;
color: wheat;
}
tfoot {
background-color: gray;
}
</style>
</head>
<body>
<!-- Ordered List -->
<!-- 순서가 있는 리스트-->
<!-- 리스트의 아이템을 지정할 땐 <li></li> 요소 사용-->
<!-- 순서가 있는 리스트를 사용하면 첫 아이템이 숫자 1부터 -->
<!-- 번호가 자동 지정됨-->
<ol>
<li>자바</li>
<li>MySQL</li>
<li>HTML</li>
</ol>
<!-- type 속성 -->
<!-- type 속성을 사용하면 숫자(1), 영 대소문자(a, A), 로마숫자 대소문자 (i, I)-->
<!-- 표기가능-->
<ol type = "I" start="5">
<li>자바</li>
<li>MySQL</li>
<li>HTML</li>
</ol>
<!-- Unordered List-->
<!-- 순서가 없는 리스트 -->
<!-- 순서가 없는 리스트를 사용하면 ■, ● 이 붙어서 표기 됨-->
<ul>
<li>자바</li>
<li>MySQL</li>
<li>HTML</li>
</ul>
<!-- Table -->
<!-- 행과 열로 구성되어있는 데이터 집합 표시 -->
<!-- <table></table> 태그로 테이블임을 명시 -->
<!-- <tr></tr> 태그로 하나의 행을 명시 -->
<!-- <td></td> 태그로 하나의 행의 열을 명시-->
<table>
<tr>
<td>전공 JAVA 프로그래밍</td>
<td>프로그래밍 언어 활용</td>
</tr>
<tr>
<td>MySQL</td>
<td>화면구현</td>
</tr>
</table>
<!-- <thead> , <tbody>, <tfoot> -->
<!-- 테이블을 헤드, 바디 ,풋으로 구조화를 시켜주는 요소-->
<br/>
<table>
<thead>
<tr>
<th>교육</th>
<th>능력단위명</th>
</tr>
</thead>
<tbody>
<tr>
<td>(전공)JAVA 프로그래밍 [정보기술개발]</td>
<td>프로그래밍 언어 활용</td>
</tr>
<tr>
<td>(전공)JAVA 프로그래밍 [정보기술개발]</td>
<td>프로그래밍 언어 응용</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>2개</td>
<td>2개</td>
</tr>
</tfoot>
</table>
<br />
<!-- colspan / rowspan -->
<!-- 행의 사이즈를 오른쪽으로 지정한 값만큼 증가시키는 속성 -->
<!-- 열의 사이즈를 아래쪽으로 지정한 값만큼 증가시키는 속성 -->
<table>
<thead>
<tr>
<th>교육</th>
<th colspan="2">능력단위명</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">(전공)JAVA 프로그래밍 [정보기술개발]</td>
<td rowspan="2">프로그래밍 언어</td>
<td>활용</td>
</tr>
<tr>
<td>응용</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>2개</td>
<td colspan="2">2개</td>
</tr>
</tfoot>
</table>
</body>
</html>