-
Notifications
You must be signed in to change notification settings - Fork 0
/
createpoll.html
88 lines (77 loc) · 3.03 KB
/
createpoll.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<title>Create-a-Poll</title>
<style>
a:link {
color: white;
}
a:visited{
color:snow;
}
footer{
padding: 1px;
color: white;
background-color: red;
}
</style>
<link rel="shortcut icon" type="image/x-icon" href="fire.img">
</head>
<body>
<header>
<div style="background-color:red;color:white;padding:5px;">
<center>The Fire $urvey</center>
</div>
<div style="background-color:Black;color:white;padding:10px;">
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Categories<span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#">Education</a></li>
<li><a href="#">Sports</a></li>
<li><a href="#">Politics</a></li>
<li><a href="#">Video Games</a></li>
<li><a href="#">Food/Restaurants</a></li>
<li><a href="#">Children</a></li>
<li><a href="#">Motorvehicles</a></li>
<li><a href="#">Hair/Beauty</a></li>
<li><a href="#">Search Poll</a></li>
</ul>
<a href="index.html">Home</a> | <a href="profile.html">Profile</a> | <a href="createpoll.html">Create Poll</a>
</div>
</div>
</header>
<center><h1>Create your own poll!</h1></center>
<form action="" method="post">
<table align="center">
<tr>
<th align="left">Name:</th>
<td><input type="text" name="name" placeholder="Type of poll"</td>
</tr><br>
<tr>
<th align="left">Question:</th>
<td><input type="text" name="question" placeholder="Question"</td>
</tr><br>
<br>
<tr>
<th align="left">Choice 1:</th>
<td><input type="text" name="choice1" placeholder="Choice 1"</td>
</tr>
<tr><br>
<th align="left">Choice 2:</th>
<td><input type="text" name="choice2" placeholder="Choice 2"</td>
</tr>
<tr>
<th align="left">Choice 3:</th>
<td><input type="text" name="choice3" placeholder="Choice 3"</td>
</tr>
<tr>
<td colspan="2" align="right"><input type="submit" value="Create Poll" class=""</td>
</tr>
</table>
</form>
<footer>
<h4>Web page 2017: The Fire $urvey</h4>
</footer>
</body>
</html>