-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form.html
69 lines (62 loc) · 1.71 KB
/
Form.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
<!doctype>
<html>
<head>
<title> SurveyForm </title>
<style>
div {
background-color: lightgrey;
width: 700px;
border: 20px solid green;
padding: 50px;
margin: 50px;
}
</style>
</head>
<body>
<form action="" method="">
<div>
<h1 class="header" align="center">SurveyForm</h1>
<p> lets us know how we can improve the freeCodeCamp</p>
<label for="firstname"><sup>*</sup>Name:</label>
<input type="text" id = "firstname" name="">
<br>
<label for="email1"><sup>*</sup>Email:</label>
<input type="email" id = "email1" name="">
<br>
<label for="num"> <sup>*</sup>Age:</label>
<input type="number" id="num" min="1" >
<br>
<br>
<label for="name"> Which option best describe your current role? </label>
<select>
<option value="Student" id="name"> Student</option>
<option value="Employee" id="name">Employee</option>
<option value="Other" id="name">Other</option>
</select>
<br>
<br>
<label for="choose"><sup>*</sup>How likely is that you would recommended freeCodeCamp to a friend? </label>
<input type="radio" id="choose" name="yesorno" value="">Definetly
<input type="radio" id="choose" name="yesorno" value="">Maybe
<input type="radio" id="choose" name="yesorno" value="">Not sure
<br>
<br>
<label for=""> What do you like most in FCC</label>
<select>
<option value "Select an option" id="">Select an option </option>
<option value "Yes" id="">Yes</option>
<option value "No" id="">No</option>
</select>
<p> Things that should be improved in the future (Check all that apply): </p>
<input type="checkbox">Front-end Projects
<br>
<input type="checkbox">Back-end Projects
<br>
<input type="checkbox">Data Visualization
<br>
</form>
</div>
</body>
</html>