forked from oregonized44/CatchPhrase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·81 lines (77 loc) · 3.44 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/bootstrap.css">
<link href="css/styles.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Cabin+Sketch' rel='stylesheet' type='text/css'>
<title>Catch Phrase</title>
</head>
<body>
<!-- Title -->
<h1 class="title-font"><span class="white-background"> Word Potato!</span></h1>
<div class="container">
<div class="row">
<div class="col-sm-6 dotted-border">
<!-- Form -->
<form class="center-stuff" id="catch-phrase">
<!-- Team 1 input -->
<div class="form-group">
<label for="team1-input"><h2 class="title-font orangesicle">Team 1</h2></label>
<br>
<input type="text" class"form-control" placeholder="ThunderCats" id="team1-input">
<br>
<label class="larger-text" for="team1-num"># of Players:</label>
<select id="team1-num" class="input-lg">
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<button id="unhide-players-one" class="btn btn-md">Add Players</button>
<ul id="team1-num">
</ul>
</div>
<!-- Team 2 Input -->
<div class="form-group">
<label for="team2-input"><h2 class="title-font aqua">Team 2</h2></label>
<br>
<input type="text" class"form-control" placeholder="Transformers" id="team2-input">
<br>
<label class="larger-text" for="team2-num"># of Players:</label>
<select id="team2-num" class="input-lg">
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<button id="unhide-players-two" class="btn btn-md">Add Players</button>
<ul id="team2-num">
</ul>
</div>
</form>
<hr>
</div>
<div class="col-sm-6">
<!-- Rules -->
<h2 class="title-font heading-tan">How to Play</h2>
<ol >
<li>Determine how many players are on each team.</li>
<li>Designate a clue giver for each each team to handle the device</li>
<li>Each round is two minutes in length, with the number of rounds determined by the number of players.</li>
<li>Each clue master will be given a word to describe to their team, but can not say the word itself.</li>
<li>Once the word has been guessed correctly, quickly pass the device to the other clue master.</li>
<li>The last person to have the device when the timer goes off, loses the round and the other team gets a point.</li>
<li>Team with the most points after all rounds completed wins.</li>
</ol>
<button id="play-button" class="btn btn-lg center-block">Start the Timer!</button>
</div>
</div>
<!-- Random Scripts -->
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="js/scripts.js"></script>
<script src="js/businesslogic.js"></script>
<script src="js/index.js"></script>
</body>
<!-- HERE IS A COMMENT -->
</html>