-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 3 KB
/
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
<!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">
<link rel="stylesheet" href="style.css">
<title>Survey Form</title>
</head>
<body>
<h1 id="title">Moin's Survey Form</h1>
<p id="description"><i>This is a Survey Form created for the FreeCodeCamp's Project Submission</i></p>
<div id="one">
<form id="survey-form">
<label for="name" id="name-label">Name</label> <br>
<input type="text" id="name" name="name" placeholder="Enter your name" required> <br><br>
<label for="email" id="email-label">Email</label> <br>
<input type="email" id="email" name="email" placeholder="Enter your email" required> <br><br>
<label for="number" id="number-label">Age (optional)</label> <br>
<input type="number" id="number" name="age" min="8" max="80" placeholder="Age"> <br><br>
<p> How is the UI of my Survey Form </p>
<input type="radio" id="normal" name="ui-survey-form" value="normal">
<label for="normal">Normal</label> <br>
<input type="radio" id="good" name="ui-survey-form" value="good">
<label for="good">Good</label> <br>
<input type="radio" id="awesome" name="ui-survey-form" value="awesome">
<label for="awesome">Awesome</label> <br> <br>
<label for="dropdown">Need your Suggestions? What should I learn first?</label> <br> <br>
<select id="dropdown" name="dropdown" required>
<option value="" disabled selected hidden> Select the best </option>
<option value="youtube-seo"> Youtube SEO </option>
<option value="wordpress"> Wordpress </option>
<option value="front-end"> Front-end Development </option>
<option value="back-end"> Back-end Development </option>
</select> <br>
<p>What would you like to see improved? (Check all that apply)</p>
<input type="checkbox" id="my-website" name="improve-survey-form" value="my-website">
<label for="my-website">My Website</label> <br>
<input type="checkbox" id="youtube-channel" name="improve-survey-form" value="youtube-channel">
<label for="youtube-channel">Youtube Channel</label> <br>
<input type="checkbox" id="my-setup" name="improve-survey-form" value="my-setup">
<label for="my-setup">My Setup</label> <br>
<input type="checkbox" id="communication-skill" name="improve-survey-form" value="communication-skill">
<label for="communication-skill">Communication Skill</label> <br>
<input type="checkbox" id="course-outline" name="improve-survey-form" value="course-outline">
<label for="course-outline">Course Outline</label> <br> <br>
<label for="comment">Any Comments?</label> <br><br>
<textarea id="comment" name="comment"></textarea> <br> <br>
<button type="submit" id="submit" form="survey-form" value="submit">Submit</button>
</form>
</div>
</body>
</html>