forked from shehrozasghar/singlepage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
irsa.index.html
87 lines (79 loc) · 3.62 KB
/
irsa.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
76
77
78
79
80
81
82
83
84
85
86
87
<!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>Docoment</title>
<link rel="stylesheet" href="stylescreen.css">
</head>
<body>
<div class="container">
<div class="top">
<h1>FreeCodeCamp Survy form</h1>
<p>Thank you for taking the time to help us improve the platform </p>
</div>
<form action="">
<div class="form-group">
<label for="">
Name
</label><input type="text"placeholder="Enter your name" class="input-group" /></div>
<div class="form-group">
<label for="">
Email
</label><input type="email"placeholder="Enter your Email" class="input-group"/></div>
<div class="form-group">
<label for="">
Age(optional)
</label><input type="text" class="input-group"/></div>
<div class="form-group">
<p>Which option best describe your current role?</p>
<select name="role" id="role" class="selection-group">
<option value="disabled">Select option</option>
<option value="student">student</option>
</select>
<div>
<div class="form-group radio">
<p>Whould you recommend freecodcamp to a friend?</p>
<label for="definitely">
<input type="radio" name="recommend" id="definitely"/>Definitely
</label>
<label for="may be">
<input type="radio" name="recommend" id="may be"/>May be
</label>
<label for="not sure">
<input type="radio" name="recommend" id="not sure"/>Not sure
</label>
</div>
<div class="form-group">
<p>What is your favorite feature of freecodcamp?</p>
<select name="favorite" id="favorite" class="selection-group">
<option value="disabled">Select option</option>
<option value="challenges">challenges</option>
</select>
</div>
<div class="form-group checkbox">
<p>What whould you like to improve to see?(check all that apply)</p>
<lable for="frontendprojects"><input type="checkbox" name="frontendprojects" id="Frontendprojects">Front-End Projects</lable>
<lable for="backendprojects"><input type="checkbox" name="backendprojects" id="backendprojects">Back-End Projects</lable>
<lable for="datavissualization"><input type="checkbox" name="datavissualization" id="datavissualization">Data Vissualization</lable>
<lable for="challenges"><input type="checkbox" name="challenges" id="challenges">Challenges</lable>
<lable for="opensourcecommunity"><input type="checkbox" name="opensourcecommunity" id="opensourcecommunity">Open Source Community</lable>
<lable for="gitterhelprooms"><input type="checkbox" name="gitterhelprooms" id="gitterhelprooms">Gitter help rooms</lable>
<lable for="videos"><input type="checkbox" name="videos" id="videos">Videos</lable>
<lable for="citymeetup"><input type="checkbox" name="citymeetup" id="citymeetup">City Meetup</lable>
<lable for="wiki"><input type="checkbox" name="wiki" id="wiki">Wiki</lable>
<lable for="forum"><input type="checkbox" name="forum" id="forum">Forum</lable>
<lable for="additionalcourses"><input type="checkbox" name="additionalcourses" id="additionalcourses">Additional Courses</lable>
</div>
<div class="form-group">
<label for="suggestion">
Any comments or suggestions?
</label>
<textarea name="suggestion" id="suggestion" cols="30" rows="10" placeholder="Enter your comment here... "></textarea>
</div>
<div class="form-group">
<input type="button"value="submit"/></div>
</form>
</body>
</html>