-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday2.html
More file actions
141 lines (132 loc) · 3.52 KB
/
day2.html
File metadata and controls
141 lines (132 loc) · 3.52 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
td,
th {
border: 1px solid black;
}
table {
width: 100%;
border-collapse: collapse;
}
.colSecond {
width: 20%;
background-color: yellow;
border: 2px dotted red;
}
.text-center {
text-align: center;
}
</style>
</head>
<body>
<table>
<caption>3-1반 역사 성적표</caption>
<tfoot>
<tr>
<td colspan="3" class="text-center">평균</td>
<td>84점</td>
</tr>
</tfoot>
<thead>
<tr>
<th>이름</th>
<th>반</th>
<th>번호</th>
<th>점수</th>
</tr>
</thead>
<tbody>
<tr>
<td>재현</td>
<td rowspan="3">1반</td>
<td>1번</td>
<td>70점</td>
</tr>
<tr>
<td>재현</td>
<!-- <td>1반</td> -->
<td>1번</td>
<td>70점</td>
</tr>
<tr>
<td>재현</td>
<!-- <td>1반</td> -->
<td>1번</td>
<td>70점</td>
</tr>
</tbody>
</table>
<!-- <table>
<caption>테이블의 제목</caption>
<colgroup>
<col>
<col class="colSecond">
<col>
</colgroup>
<tfoot>
<tr>
<td>맛있다.</td>
<td>맛없다.</td>
<td>보통이다.</td>
</tr>
</tfoot>
<thead>
<tr>
<th>월요일</th>
<th>화요일</th>
<th>수요일</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="2">짜장면</td>
<td rowspan="2">피자</td>
</tr>
<tr>
<td>육계장</td>
<td>라면</td>
</tr>
</tbody>
</table> -->
<br>
<br>
<br>
<form>
<fieldset>
<legend>HTML 스터디가 망해가는 이유</legend>
<label>
노잼이다
<input type="radio" name="reasome">
</label>
<label>
너무 어렵다
<input type="radio" name="reasome">
</label>
<label>
주말에 뭐하는 짓이냐
<input type="radio" name="reasome">
</label>
<br>
<label for="">만약 다른 스터디를 하고 싶다면?</label>
<br>
<select name="lang">
<option value="javascript">자바스크립트</option>
<option value="python">파이썬</option>
<option value="java">자바</option>
</select>
<br>
<label for="lastWord">마지막으로 하고싶은 말</label>
<br>
<textarea name="lastWord" id="lastWord" cols="30" rows="2"></textarea>
<br>
<button type="submit">전송하기</button>
<button type="reset">다시 작성하기</button>
</fieldset>
</form>
</body>
</html>