-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhw.html
More file actions
136 lines (113 loc) · 3.65 KB
/
hw.html
File metadata and controls
136 lines (113 loc) · 3.65 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html>
<form id="survey-form" >
<head>
<style>
body {
background-color: black;
background-image: url(text.jpg);
background-size: 100% 100%;
}
h1 {
font-family: "Chiller";
font-size: 90px;
color: #ff001e ;
text-align: center;
margin-bottom: -20px;
text-shadow: 2px 2px 2px #C70039;
}
#description {
color: #ff001e ;
font-family: "Chiller";
text-align: center;
font-size: 35px;
font-weight: 500;
text-shadow: 2px 1px 2px #C70039;
}
legend {
padding: 3px 20px;
color: #ff001e;
font-family: "Chiller";
text-align: center;
font-size: 35px;
text-shadow: 2px 1px 2px #C70039;
}
fieldset {
color: #ff001e;
font-family: "Chiller";
font-size: 35px;
font-weight: 500;
text-shadow: 2px 1px 2px #C70039;
border-color: #C70039;
}
input {
background-color: #dcccce;
}
#submit {
border: 2px solid #C70039;
padding: 15px 32px;
text-align: center;
font-family: "Chiller";
font-size: 35px;
color: #ff001e ;
border-radius: 4px;
text-shadow: 2px 2px 2px #C70039;
background-color: Transparent;
background-repeat:no-repeat;
}
</style>
</head>
<body>
<h1 id="title">Halloween Party Survey</h1>
<p id="description"><b>Please fill it in ASAP :)</b></p>
<fieldset>
<div>
<label id="name-lable" for="name" style="padding-right:30px;">Name:</label>
<input type="text" id="name" name="user_name" placeholder="Enter name">
</div>
<div>
<label id="email-label" for="Email" style="padding-right:32px;">Email:</label>
<input type="email" id="email" name="user_email" placeholder="Enter email">
</div>
<div>
<label id="number-label" for="age" style="padding-right:44px;">Age:</label>
<input type="number" id="number" name="user_age" placeholder="Enter age" min="1" max="110">
</div>
<label for="gender" style="padding-right:15px;">Gender:</label>
<select id="dropdown" style="background-color:#dcccce;">
<option style="background-color:#dcccce;" value="male">Male</option>
<option style="background-color:#dcccce;" value="female">Female</option>
<option style="background-color:#dcccce;" value="other">Other</option>
</select>
</fieldset>
<fieldset>
<legend>I Need Transfer:</legend>
<label for="transfer"></label>
<input type="radio" name="transfer" value="yes" checked> Yes<br>
<input type="radio" name="transfer" value="no"> No<br>
<input type="radio" name="transfer" value="can_help"> I can give a ride to the rest
</fieldset>
<fieldset>
<legend>Please choose which celebrity you want to see at the party:</legend>
<label for="celebrity"></label>
<input type="checkbox" name="celebrity" value="tattoo">Michael Myers<br>
<input type="checkbox" name="celebrity" value="Freddy">Freddy Krueger<br>
<input type="checkbox" name="celebrity" value="Leatherface">Leatherface<br>
<input type="checkbox" name="celebrity" value="Jason">Jason Voorhes<br>
<input type="checkbox" name="celebrity" value="nobody"> Nobody<br>
<input type="checkbox" name="celebrity" value="everyone" checked> Everyone<br>
</fieldset>
<fieldset>
<legend>Your Proposals:</legend>
<div>
<label for="msg"></label>
<textarea style="background-color:#dcccce;" id="msg" name="user_message" rows="5" cols="50" placeholder="Enter your proposals here"></textarea>
</div>
</fieldset>
<div>
<p> <center> <button type="submit" id="submit">SUBMIT</button> </center> </p>
</div>
</body>
</form>
</body>
</html>