-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (91 loc) · 3.51 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
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
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=
, initial-scale=1.0">
<title>First css Line</title>
<link rel="stylesheet" href="style.css">
</head>
<style>
body{
background-color: rgb(87, 141, 32);
border-left-width: 155px;
}
h1{
color: aliceblue;
font-size: 40px;
text-align: center;
}
h2{
color: aliceblue;
font-size: 30px;
}
form{
color: aliceblue;
border-radius: 10px;
padding: 20px 20px 20px 20px;
width: 50%;
margin: auto;
background-color: rgb(43, 38, 38);
color-scheme: dark;
font-size: 25px;
textarea::placeholder{
font-size: 20px;
}
option,select{
font-size: 20px;
}
}
</style>
<body>
<div>
<h1>
<center>
Skill++ Survey Form
</center>
</h1>
<h2>
<center>
<i>
thank you for taking the time to help us improve the platform
</i></center>
</h2>
<form action="form.php"flex-wrap>
<pre>
what is your name?<br>
<textarea name="text" id="text" cols="100" rows="2" placeholder="Enter your name"></textarea><br>
what is your email address?<br>
<textarea name="text" id="text" cols="100" rows="2" placeholder="Enter your email"></textarea><br>
what is your age?<br>
<textarea name="text" id="text" cols="100" rows="2" placeholder="Enter your age"></textarea><br>
which option best describes your current role?<br>
<select name="roles" id="role">
<option value="role">student</option>
<option value="role">part time job</option>
<option value="role">full time job</option>
<option value="role">freelancer</option>
</select><br>
would you recomend[company name]to your friends?<br>
<label for="options">
<input type="radio" value="definitely" name="options"id="optiondefinitely">Definitely</label><br>
<label for="options">
<input type="radio" value="Maybe" name="options"id="optionmaybe">Maybe</label><br>
<label for="options">
<input type="radio" value="not sure" name="options"id="optionnotsure">Not Sure</label><br>
what would you like to see improved?<br>
(check all that apply)<br>
<label for="options">
<input type="checkbox" value="front end projects" name="options"id="option1">Front end projects</label><br>
<label for="options">
<input type="checkbox" value="back end projects" name="options"id="option2">Back end projects</label><br>
<label for="options">
<input type="checkbox" value="Challenges" name="options"id="option3">Challenges</label><br>
any comments or suggestions ?<br>
<textarea name="enter" id="enter" cols="100" rows="20" placeholder="Enter your comments here"></textarea>
<input type="submit"style="padding:5px; background-color:green">
</pre>
</form>
</div>
</body>
</html>