-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (120 loc) · 3.48 KB
/
index.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
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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Survey Form</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Sorts+Mill+Goudy&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="container">
<h1 id="title">NET<span>FLIX</span></h1>
<h3 id="description">
Thank you for signing up at Netflix. Tell us more about yourself.
</h3>
<form action="q" id="survey-form" method="GET" name="form">
<div class="box">
<label for="name" id="name-label">Name</label><br />
<input
type="text"
name="name"
id="name"
placeholder="Enter Your Name"
required
/>
</div>
<div class="box">
<label for="number" id="number-label">Age</label><br />
<input
type="number"
id="number"
name="age"
placeholder="Age"
min="18"
max="99"
required
/>
</div>
<div class="box">
<label for="email" id="email-label">E-mail</label><br />
<input
type="text"
id="email"
name="email"
placeholder="[email protected]"
/>
</div>
<div class="box">
<label for="dropdown" id="dropdown-label">Content Type</label><br />
<select name="content" id="dropdown">
<option value="movie">Movie</option>
<option value="series">Series</option>
</select>
</div>
<div class="box">
<label id="checkbox"> Movie type</label><br />
<label for="first-check"
><input
type="checkbox"
id="first-check"
name="movie1"
value="Comedy"
/>
Comedy</label
><br />
<label for="second-check"
><input
type="checkbox"
id="second-check"
name="movie2"
value="Action"
/>
Action</label
><br />
<label for="third-check"
><input
type="checkbox"
id="third-check"
name="movie3"
value="Romance"
checked=""
/>
Romance</label
><br />
</div>
<div class="box">
<label id="radiobtn">Gender</label><br />
<label><input type="radio" name="gender" value="male" />Male</label
><br />
<label
><input type="radio" name="gender" value="female" />Female</label
><br />
<label
><input
type="radio"
name="gender"
value="other"
checked
/>Other</label
><br />
</div>
<div class="box textarea">
<label for="feedback" id="feed-label">Feedback</label><br />
<textarea
name="feedback"
id="feedback"
cols="57"
rows="7"
placeholder="Enter Your Comment"
style="resize: none"
></textarea>
</div>
<input type="submit" value="Send" id="submit" />
</form>
</div>
</body>
</html>