-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample_07.html
More file actions
48 lines (48 loc) · 1.7 KB
/
Copy pathExample_07.html
File metadata and controls
48 lines (48 loc) · 1.7 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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<title>특강 신청</title>
</head>
<body>
<h3>여름방학 특강 신청하기</h3>
<form action="">
<fieldset>
<legend>교육과정</legend>
<label for="">영어회화</label>
<input type="text" placeholder="오전 9:00~11:00" readonly>
<label for="">(초급레벨)</label>
</fieldset><br>
<fieldset>
<legend>신청자 기본 정보</legend>
<label for="">이름</label>
<input type="text"><br>
<label for="">이메일</label>
<input type="email"><br>
<label for="">비밀번호</label>
<input type="password"><br>
<label for="">학과</label>
<select>
<option value="">학과를 선택하세요</option>
<option value="">컴퓨터공학과</option>
<option value="">국어국문학과</option>
<option value="">영어영문학과</option>
<option value="">전자 융합과</option>
</select><br>
<label for="">성별</label>
<input type="radio" name="gender">남자
<input type="radio" name="gender">여자<br>
<label for="">관심사</label>
<input type="checkbox">여행
<input type="checkbox">게임
<input type="checkbox">공연
<input type="checkbox">운동
<input type="checkbox">기타<br>
</fieldset>
<p>
<button type="submit">수강신청</button>
<button type="reset">다시쓰기</button>
</p>
</form>
</body>
</html>