forked from praveenscience/Creative-Simple-Landing-Pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurveyform.html
83 lines (82 loc) · 2.83 KB
/
surveyform.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
<!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>SURVEY-FORM</title>
<style>
.heading {
color: purple;
text-align: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 2em;
font-weight: 1000;
font-style: italic;
text-decoration: darkmagenta;
text-shadow: 0 0 green;
text-transform: uppercase;
}
body {
background-color: cyan;
}
#blue {
color: blue;
}
form {
border: dashed black;
margin: auto;
border-radius: 10px;
color: blue;
}
</style>
</head>
<body>
<h1 class="heading"><em>WELCOME TO THE SHORT SURVEY</em></h1>
<form>
<div>
<h2 id="blue">About yourself</h2>
<label for="uname">Enter your name:</label>
<input type="text" name="uname" id="uname" placeholder="Enter your name" />
<label>Gender</label>
<input type="radio" name="gender" /> Male <input type="radio" name="gender" /> Female
<label for="locality">Locality</label>
<input type="text" name="locality" id="locality" placeholder="enter the name of your locality" />
<label for="qual">Qualification</label>
<select name="qual" id="qual">
<option>select your qualification</option>
<option>B.E</option>
<option>B.Tech</option>
<option>B.Sc</option>
<option>B.Com</option>
<option>BCA</option>
<option>MBA</option>
</select>
<label for="occupation">Occupation</label>
<select name="occupation" id="occupation">
<option>select your Occupation</option>
<option>Student</option>
<option>Faculty</option>
<option>Other</option>
</select>
</div>
<div>
<h2>Contact details</h2>
<label for="email">Enter your Email:</label>
<input type="email" id="email" name="mail" placeholder="Enter your email id" />
</div>
<h3>How would you ike to rateHacktoberfest 2022</h3>
<input type="radio" name="rate" value="0" /> Very poor
<input type="radio" name="rate" value="1" />
<input type="radio" name="rate" value="2" />
<input type="radio" name="rate" value="3" />
<input type="radio" name="rate" value="4" />
<input type="radio" name="rate" value="5" /> Excellent
<fieldset>
<legend>Any comments</legend>
<textarea name="comments" id="comm" cols="60" rows="10"></textarea>
</fieldset>
<input type="submit" value="Submit" />
</form>
</body>
</html>