-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (76 loc) · 3.88 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
<!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>Netflix Survey Form</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=Sorts+Mill+Goudy:ital@1&display=swap" rel="stylesheet">
</head>
<body>
<div id="container">
<header id="head"">
<h1 id="title">NET<span>FLIX</span></h1>
<h3 id="description">
Thank you for signing up to Netflix.Tell me about yourself
</h3>
</header>
<div id="survey-form-container">
<div class="" id="survey-form">
<form action="result.html" method="GET" target="_blank">
<div class="input-box">
<label for="name">Name</label><br>
<input type="text" id="name" name="name" placeholder="Enter your name">
</div>
<div class="input-box">
<label for="age">Age</label><br>
<input type="text" id="age" name="age" placeholder="Enter your age">
</div>
<div class="input-box">
<label for="email">Email</label><br>
<input type="text" id="email" name="email" placeholder="Enter your email">
</div>
<div class="input-box">
<label for="content">Content Type</label><br>
<select name="content" id="dropdown">
<option value="movie">Movie</option>
<option value="series" selected>Series</option>
</select>
</div>
<div class="input-box">
<label for="Movie">Movie Type</label>
<br>
<input type="checkbox" name="movie" value="Comedy" id="first-check">
<label for="first-check">Comedy</label><br>
<input type="checkbox" name="movie" value="Action" id="second-check">
<label for="second-check">Action</label><br>
<input type="checkbox" name="movie" value="Romance" id="third-check">
<label for="third-check">Romance</label>
</div>
<div class="input-box">
<label for="gender">Gender</label>
<br>
<input type="radio" name="gender" id="first-radio" value="Male">
<label for="first-radio">Male</label><br>
<input type="radio" name="gender" id="second-radio" value="Female">
<label for="second-radio">Female</label><br>
<input type="radio" name="gender" id="third-radio" value="Other">
<label for="third-radio">Other</label>
</div>
<div class="input-box">
<label for="feedback">Feedback</label><br>
<textarea name="feedback" id="feedback" placeholder="Any comment" cols="30" rows="10"></textarea>
</div>
<div id="form-submit">
<input type="submit" value="SEND" id="form-button">
</div>
</form>
</div>
</div>
</div>
</body>
</html>