-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (59 loc) · 2.91 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
<!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>Survey Form</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1 id="title">Blackpink Survey Form</h1>
<p id="description">
Thank you for taking the time to help us improve the platform
</p>
<form id="survey-form">
<label for="name" id="name-label">
Name
<input type="text" id="name" placeholder="Enter your name" required/>
</label>
<label for="email" id="email-label">
Email
<input type="email" id="email" placeholder="Enter your email" required/>
</label>
<label for="number" id="number-label">
Age (optional)
<input type="number" id="number" placeholder="Age" min="16" max="60" />
</label>
<label for="dropdown">
Which option best describes your current role?
<select name="dropdown" id="dropdown">
<option value="" disabled selected>Select current role</option>
<option value="Student">Member</option>
<option value="Full Time Job">Administrator</option>
<option value="Full Time Learner">Full Time Learner</option>
<option value="Prefer not to say">Prefer not to say</option>
<option value="Other">Other</option>
</select>
</label>
</label>
<p>Would you recommend freeCodeCamp to a friend?</p>
<label for="radio" id="opt"><input type="radio" name="opt" value="1" checked>Definitely</label>
<label for="radio" id="opt"><input type="radio" name="opt" value="2">Maybe</label>
<label for="radio" id="opt"><input type="radio" name="opt" value="3">Not sure</label>
<p>What would you like to see improved? <span class="clue">(Check all that apply)</span></p>
<label for="radio" id="opt"><input type="checkbox" value="Meet and Greet" name="opt1">Meet and Greet</label>
<label for="radio" id="opt"><input type="checkbox" value="Concert" name="opt2">Concert</label>
<label for="radio" id="opt"><input type="checkbox" value="Album" name="opt3">Album</label>
<label for="radio" id="opt"><input type="checkbox" value="Live Music" name="opt4">Live Music</label>
<label for="radio" id="opt"><input type="checkbox" value="Meetups" name="opt4">Meetups</label>
<label for="radio" id="opt"><input type="checkbox" value="Giveaway" name="opt4">Giveaway</label>
<label for="email" id="email-label">
Any comments or suggestions?
<textarea name="" id="" cols="30" rows="10" placeholder="Enter your comment here..."></textarea>
</label>
<button id="submit" type="submit">Submit</button>
</form>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</body>
</html>