-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb_survey.html
46 lines (46 loc) · 1.53 KB
/
web_survey.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
<!DOCTYPE html>
<html>
<head>
<title>설문조사</title>
</head>
<body>
<header>
<h1>설문지</h1>
소프트웨어 기술에 대한 의견을 듣습니다. 많은 참여 부탁드립니다.
</header>
<hr>
<form>
학년
<input type="radio" name ="school" value ="1">1학년
<input type="radio" name = "school" value="2">2학년
<input type="radio" name = "school" value="3">3학년
<input type="radio" name = "school" value="4">4학년
</form>
<form>
성별
<input type="radio" name ="sex" value ="1">남
<input type="radio" name = "sex" value = "2">여
</form>
<form>
<br>
관심분야 <input type="text" list="interest"><br>
<datalist id="interest">
<option value="모바일 소프트웨어">
<option value="웹서비스">
<option value="빅데이터">
</datalist>
<br>
</form>
<form>
진로
<input type="checkbox" value ="1">개발
<input type="checkbox" value = "2">기획
<input type="checkbox" value = "3">영업
<input type="checkbox" value = "4">창업
</form>
<form>
남기고 싶은 말: <textarea cols="40" rows="10">글을 남겨주세요</textarea>
</form>
<footer><p>Copyright 2017 by Kitae</p></footer>
</body>
</html>