-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
117 lines (117 loc) · 5.85 KB
/
form.html
File metadata and controls
117 lines (117 loc) · 5.85 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
<!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>나의 개발 유형찾기</title>
<link rel="stylesheet" type = "text/css" href="css/reset.css">
<link rel="stylesheet" type=
"text/css" href="css/form.css">
</head>
<body>
<section id = "survey">
<div class="wrapper">
<form id="form">
<div class="test">
<div class="question_container">
<h3 class = "number">1/3</h3>
<h3 class = "question">당신이 가장 재밌었던 수업은?</h3>
</div>
<div class="answer">
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
</div>
<div class="btn_wrap">
<button class= "next_btn">다 음</button>
</div>
</div>
<div class = "test">
<div class="question_container">
<h3 class = "number">2/3</h3>
<h3 class = "question">당신이 가장 재밌었던 수업은?</h3>
</div>
<div class="answer">
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
</div>
<div class="btn_wrap btn_sort">
<button class= "prev_btn">이 전</button>
<button class= "next_btn">다 음</button>
</div>
</div>
<div class = "test">
<div class="question_container">
<h3 class = "number">3/3</h3>
<h3 class = "question">당신이 가장 재밌었던 수업은?</h3>
</div>
<div class="answer">
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
<div>
<input id = "one" type="radio" name=answer_1>
<label for="one">게임 개발(유니티, 언리얼, Pygame)</label>
</div>
</div>
<div class="btn_wrap btn_sort">
<button class= "prev_btn">이 전</button>
<input type="submit" value = "제 출" class= "submit_btn">
</div>
</div>
</form>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.6.0.js" ></script>
<script type = "text/javascript" src="js/form.js"></script>
</body>
</html>