-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
37 lines (37 loc) · 1.54 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Quizzeo! - Choose Your Teams</title>
<link rel="shortcut icon" href="favicon/favicon.ico" >
<link rel="icon" type="image/gif" href="favicon/animated_favicon1.gif" >
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body style="background-color: #fffb71">
<h1 class="optionsH1">Select Your Teams</h1>
<div class="center">
<span class="spanFont">
<input id="0" type="radio" name="teams" value="team 1" onclick="chooseTeams(event)">One Team
<input id="1" type="radio" name="teams" value="team 2" onclick="chooseTeams(event)">Two Teams
<input id="2" type="radio" name="teams" value="team 3" onclick="chooseTeams(event)">Three Teams
<input id="3" type="radio" name="teams" value="team 4" onclick="chooseTeams(event)">Four Teams
</span>
</div>
<form action="quizzeo.html" class="center divFont" onsubmit="moveToStorage(event)">
<div class="teams hidden">
<p>Enter Name for Team 1: <input class="input" type="text" placeholder="Team 1"></p>
</div>
<div class="teams hidden">
<p>Enter Name for Team 2: <input class="input" type="text" placeholder="Team 2"></p>
</div>
<div class="teams hidden">
<p>Enter Name for Team 3: <input class="input" type="text" placeholder="Team 3"></p>
</div>
<div class="teams hidden">
<p>Enter Name for Team 4: <input class="input" type="text" placeholder="Team 4"></p>
</div>
<input type="submit" class="button" value="submit">
</form>
<script src="javascript/options.js" type="text/javascript"></script>
</body>
</html>