-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (75 loc) · 3.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width", initial-scale="1.0">
<link rel="stylesheet" href="styles.css">
<title>Survey Form</title>
</head>
<body>
<main>
<h1 id="title">Survey Form by Erick Jordão</h1>
<p id="description">Please fill out this form</p>
<form id="survey-form">
<div class="form-group">
<label id="name-label" for="name">Name: <input id="name" name="name" type="text" required placeholder="Enter your name"></label>
</div>
<div class="form-group">
<label id="email-label" for="email">Email: <input id="email" name="email" type="email" required placeholder="Enter your Email"</label>
</div>
<div class="form-group">
<label id="number-label" for="number">Age <span class="clue">(optional): </span><input id="number" name="age" type="number" min="10" max="99" placeholder="Age"</label>
</div>
<div class="form-group">
<p>Which option best describes your current role?</p>
<select id="dropdown" name="role" required>
<option disabled selected value>Select current role</option>
<option value="student">Student</option>
<option value="job">Full Time Job</option>
<option value="learner">Full Time Learner</option>
<option value="not-to-say">Prefer not to say</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<p>Are you happy with your actual job?</p>
<label><input name="recommend" type="radio" checked value="yes">Yes</input></label>
<label><input name="recommend" type="radio" value="no">No</input></label>
<label><input name="recommend" type="radio" value="not-working">I don't habe a job</input></label>
</div>
<div class="form-group">
<p>Select the areas that interests you most:</p><span class="clue">(check all that applies)</span>
<div>
<label><input type="checkbox" value="programming">Programming</input></label>
</div>
<div>
<label><input type="checkbox" value="civil-eng">Civil Engineering</input></label>
</div>
<div>
<label><input type="checkbox" value="medical">Medical</input></label>
</div>
<div>
<label><input type="checkbox" value="chemistry">Chemistry</input></label>
</div>
<div>
<label><input type="checkbox" value="biology">Biology</input></label>
</div>
<div>
<label><input type="checkbox" value="human-resources">Human Resources</input></label>
</div>
<div>
<label><input type="checkbox" value="adm">Administration</input></label>
</div>
</div>
<div class="form-group">
<p>Other areas?</p>
<textarea placeholder="Type areas of interest..."></textarea>
</div>
<hr>
<div class="form-group">
<button type="submit" id="submit">Submit</button>
</div>
</form>
</main>
</body>
</html>