-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (38 loc) · 1.85 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
<!DOCTYPE html>
<!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">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<h1 id="title">freeCodeCamp Survey Form</h1>
<p id="description">Thank you for taking the time to help us improve the platform</p>
<form id="survey-form">
<label id="name-label">Name</label>
<input required type="text" id="name" placeholder="Enter your name"/>
<label id="email-label">Email</label>
<input required type="email" id="email" placeholder="Enter your email"/>
<label id="number-label">Number</label>
<input type="number" id="number" min="4" max="15" placeholder="Enter your age"/>
<label id="dropdown-label">What is your favorite feature of freeCodeCamp?</label>
<select id="dropdown">
<option value="challenges">Challenges</option>
<option value="projects">Projects</option>
</select>
<label id="radio-label">Would you recommend freeCodeCamp to a friend?</label>
<p><input value="definitely" type="radio" name="radio">Definitely</p>
<p><input type="radio" value="maybe" name="radio">Maybe</p>
<p><input type="radio" value="notsure" name="radio">Not sure</p>
<label id="radio-label">What would you like to see improved? (Check all that apply)</label>
<p><input value="frontend" type="checkbox" name="checkbox">Front-end Projects</p>
</p><input value="backend" type="checkbox" name="checkbox">Back-end Projects</p>
<label id="textarea-label">Any comments or suggestions?</label>
<textarea></textarea>
<button id="submit">Submit</button
</form>
</body>
</html>