-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey3.html
53 lines (50 loc) · 1.57 KB
/
survey3.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>소프트웨어 기술 선호에 관한 설문</title>
</head>
<body>
<header>
<h1>설문지</h1>
<article>
<p> 소프트웨어 기술에 대한 의견을 듣습니다. 많은 참여 부탁드립니다.</p>
</article>
<hr>
</header>
<section>
<form>
<p><span>학년</span>
<label><input type="radio" name="grade" value="1" checked>1학년</label>
<label><input type="radio" name="grade" value="2">2학년</label>
<label><input type="radio" name="grade" value="3">3학년</label>
<label><input type="radio" name="grade" value="4">4학년</label>
</p>
<p><span>성별</span>
<label><input type="radio" name="gender" value="male">남</label>
<label><input type="radio" name="gender" value="female">여</label>
</p>
<p><span>관심 분야</span>
<select>
<option value="1">모바일 소프트웨어
<option value="2">웹 서비스
<option value="3">빅데이터
<option value="4">디지털 콘텐츠 및 가상 현실
</select>
</p>
<p><span>진로</span>
<label><input type="checkbox" name="dev" value="1" checked>개발</label>
<label><input type="checkbox" name="plan" value="2">기획</label>
<label><input type="checkbox" name="busi" value="3">영업</label>
<label><input type="checkbox" name="startup" value="4">창업</label>
</p>
<p><span>남기고 싶은 말</span>
<textarea cols="50" rows="10" placeholder="글을 남겨주세요"></textarea>
</p>
</form>
</section>
<footer>
<p>Copyright 2017 by Kitae</p>
</footer>
</body>
</html>