-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.html
44 lines (40 loc) · 1.31 KB
/
project.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
<!DOCTYPE html>
<html>
<head>
<!--this is my page title-->
<title>survey form for freecode camp</title>
</head>
<body>
<!--this is my first H1 tage-->
<H1>survey form</H1>
<!--first H5-->
<h5>let us know how we can improve freecodecamp</h5>
<!--this is my pragraph-->
<form>name:
<input text="text">
</form>
<form>age:<input text="numbres"></form>
<form>email:<input text="email"></form>
<!--first selet form-->
which option best descirbe your current role
<select>
<option>
student</option>
<option>teacher</option>
</select>
<P>how likely is it that you will
recommende free code camp to a friend</p>
<input type="checkbox"> <label>definatly</label>
<input type="checkbox" ><label>maybe</label>
<input type="checkbox"> <label>not sures</label>
<p> what did you like most in fcc</p>
<select>
<option>html</option>
<option>css</option>
</select>
<p>what would u like us to improve in</p>
<input type="checkbox"><label>front end project</label>
<input type="checkbox"><label>back end project</label>
<input type="checkbox"><label>data validation</label>
</body>
</html>