-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (116 loc) · 6 KB
/
index.html
File metadata and controls
116 lines (116 loc) · 6 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header class="header">
<h1 id="title" class="text-center">freeCodeCamp Feedback Form</h1>
<p id="description" class="description text-center">
Your valuable insights help us enhance our platform
</p>
</header>
<form id="survey-form">
<div class="form-group">
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" class="form-control" placeholder="Enter your full name" required>
</div>
<div class="form-group">
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" class="form-control" placeholder="Enter your Email" required>
</div>
<div class="form-group">
<label for="number">Age (Optional):</label>
<input type="number" id="number" name="age" min="13" max="99" class="form-control" placeholder="Your age">
</div>
<div class="form-group">
<label for="dropdown">Tell us about your current role:</label>
<select id="dropdown" name="role" class="form-control" required>
<option disabled selected value>Select your current role</option>
<option value="student">Student</option>
<option value="job">Full Time Job</option>
<option value="learner">Full Time Learner</option>
<option value="preferNo">Prefer not to say</option>
<option value="other">Other</option>
</select>
</div>
<div class="form-group">
<label>Would you recommend freeCodeCamp to a friend?</label>
<div>
<label>
<input type="radio" name="user-recommend" value="definitely" class="input-radio" checked> Absolutely
</label>
<label>
<input type="radio" name="user-recommend" value="maybe" class="input-radio"> Possibly
</label>
<label>
<input type="radio" name="user-recommend" value="not-sure" class="input-radio"> Not sure
</label>
</div>
</div>
<div class="form-group">
<label for="most-like">What is your favorite feature of freeCodeCamp?</label>
<select id="most-like" name="mostlike" class="form-control" required>
<option disabled selected value>Select your favorite feature</option>
<option value="challenges">Challenges</option>
<option value="projects">Projects</option>
<option value="community">Community</option>
<option value="openSource">Open Source</option>
</select>
</div>
<div class="form-group">
<label>What improvements would you like to see? <span class="clue">(Select all that apply)</span></label>
<div>
<label>
<input type="checkbox" name="prefer" value="front-end-projects" class="input-checkbox"> Enhanced Front-end Projects
</label>
<label>
<input type="checkbox" name="prefer" value="back-end-projects" class="input-checkbox"> Improved Back-end Projects
</label>
<label>
<input type="checkbox" name="prefer" value="data-visualization" class="input-checkbox"> Advanced Data Visualization
</label>
<label>
<input type="checkbox" name="prefer" value="challenges" class="input-checkbox"> Challenging Exercises
</label>
<label>
<input type="checkbox" name="prefer" value="open-source-community" class="input-checkbox"> Engaging Open Source Community
</label>
<label>
<input type="checkbox" name="prefer" value="gitter-help-rooms" class="input-checkbox"> Interactive Gitter help rooms
</label>
<label>
<input type="checkbox" name="prefer" value="videos" class="input-checkbox"> Educational Videos
</label>
<label>
<input type="checkbox" name="prefer" value="city-meetups" class="input-checkbox"> Local City Meetups
</label>
<label>
<input type="checkbox" name="prefer" value="wiki" class="input-checkbox"> Comprehensive Wiki
</label>
<label>
<input type="checkbox" name="prefer" value="forum" class="input-checkbox"> Interactive Forum
</label>
<label>
<input type="checkbox" name="prefer" value="additional-courses" class="input-checkbox"> Diverse Additional Courses
</label>
</div>
</div>
<div class="form-group">
<label for="comments">Do you have any comments or suggestions?</label>
<textarea id="comments" name="comment" class="input-textarea" placeholder="Share your thoughts here..."></textarea>
</div>
<div class="form-group">
<button type="submit" id="submit" class="submit-button">Submit Feedback</button>
</div>
</form>
</div>
<div class="text-center" style="padding-top: 40px;">
<p style="font-size: 1.05rem;">
Written and Coded by
<a href="https://www.freecodecamp.org/Geo_lal" target="_blank" style="text-decoration: none; color: green;">Geo Lal</a>
</p>
</div>
</body>
</html>