-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexcercise3.html
More file actions
78 lines (71 loc) · 2.03 KB
/
Copy pathexcercise3.html
File metadata and controls
78 lines (71 loc) · 2.03 KB
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
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<center>
<p>Lets us know ho we can improved freeCodeCamp</p>
<div>
<label for="name">* Name</label>  
<input type="text" placeholder="Enter your Name" />
</div>
<br />
<div>
<label for="email">* Email</label>  
<input type="text" placeholder="Enter your Email" />
</div>
<br />
<div>
<label for="age">* Age</label>    
<input type="text" placeholder="Age" />
</div>
<br />
<div>
<label for="student"
>* Which option best describes your current role?</label
>
   
<select name="" id="">
<option value="">Student</option>
</select>
</div>
<div>
<label for="btn"
>* How likely is that you would recomend freeCodeCamp to a
friend?</label
>
   
<input type="radio" />definitely <input type="radio" />Maybe
<input type="radio" />Not sure
</div>
<div>
<label for="">* What do you like most in FCC</label>
   
<select name="" id="">
<option value="">Select an option</option>
</select>
</div>
<div>
<label for="btn"
>* How likely is that you would recomend freeCodeCamp to a
friend?</label
>
   
<input type="checkbox" />definitely <input type="checkbox" />Maybe
<input type="checkbox" />Not sure
</div>
<!--
<div>
<label for="age"
>* How likely is that you would recommend freeCodeCamp to a
friend?</label
>
   
<input type="text" placeholder="Age" />
</div> -->
</center>
</body>
</html>