-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpoll.html
More file actions
35 lines (34 loc) · 1.01 KB
/
poll.html
File metadata and controls
35 lines (34 loc) · 1.01 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
<!DOCTYPE html>
<body class="background">
<link rel="stylesheet" type="text/css" href="poll.css">
<fieldset>
<legend class="order"><b>Team A Poll</b> </legend>
<br>
<menu>
<form class="order" action="poll.php" method="POST">
<ul>
<label for="name">Enter First Name</label>
<input type="text" name="fname" autofocus="on" required="on"><br>
</ul>
<ul>
<label for="name">Enter Last Name</label>
<input type="text" name="lname" autofocus="on" required="on"><br>
</ul>
<ul>
<label for="Vantage">Vantage</label>
<input type="checkbox" name="vantage_theme" value="1"><br>
</ul>
<ul>
<label for="Eighties">Eighties</label>
<input type="checkbox" name="eighties_theme" value="1"><br>
</ul>
<ul>
<label for="Enter">Other theme name </label>
<input type="text" name="theme"><br>
</ul>
<br>
<input type="submit" class="btn-coner" name="Submit">
</form>
</menu>
</fieldset>
</body>