-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (54 loc) · 3.19 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
<!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>Microverse Survey formulary</Form></title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="main">
<h1 id="title">Microverse survey form</h1>
<p id="description">
Thank you for your time to help us improve our process
</p>
<div class="main-content">
<div class="form-content">
<form id="survey-form">
<label for="name" id="name-label">Name</label>
<input id="name" type="text" required placeholder="Enter your name" />
<label for="email" id="email-label">Email</label>
<input id="email" type="email" required placeholder="Enter your email" />
<label for="number" id="number-label">Enter your calification from 1 to 10</label>
<input id="number" type="number" min="1" max="10" required placeholder="where 1 is the lowest calification" />
<label for="dropdown">Which option best describes your current role?</label>
<select id="dropdown">
<option value="bootcamp-student">Bootcamp Student</option>
<option value="applicant">Applicant</option>
<option value="full-time-job">Full time job</option>
<option value="prefer-not-to-say">Prefer not to say</option>
<option value="other">Other</option>
</select>
<fieldset>
<legend>Would you recommend our Bootcamp to a friend?</legend>
<input type="radio" name="action" checked id="definitely" value="definitely" /><label for="definitely">Definitely</label><br />
<input type="radio" name="action" id="maybe" value="maybe" /><label for="maybe">Maybe</label><br />
<input type="radio" name="action" id="not-sure" value="not-sure" /><label for="not-sure">Not sure</label><br />
</fieldset>
<p>What would you like to see improved?</p>
<input type="checkbox" id="challenges" name="challenges" value="challenges">
<label for="challenges">Challenges</label><br>
<input type="checkbox" id="pair-programming" name="pair-programming" value="pair-programming">
<label for="pair-programming">Pair Programming</label><br>
<input type="checkbox" id="supp" name="supp" value="supp">
<label for="supp">Suppourt and Team</label><br>
<label for="comment">Any comments or suggestions?</label>
<textarea rows="4" cols="50" id="comment">Enter your comment here...</textarea>
<button type="submit" id="submit">Submit</button>
</form>
</div>
</div>
</div>
</body>
</html>