forked from oregonized44/CatchPhrase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
round-over.html
executable file
·60 lines (55 loc) · 1.62 KB
/
round-over.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.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">
Round
<span id="round-num">
</span>Over
</span>
</h1>
<!-- Player 1 Panel -->
<div class="container">
<div class="row">
<div class="col-sm-5" id="player1-panel">
<h2>
<span id="team1-name"></span>
</h2>
<h3>
Score: <span id="team1-score"></span>
</h3>
</div>
<!-- Player 2 Panel -->
<div class="col-sm-5 col-sm-offset-2" id="player2-panel">
<h2>
<span id="team2-name"></span>
</h2>
<h3>
Score: <span id="team2-score"></span>
</h3>
</div>
</div>
</div>
<br>
<div class="container">
<div class="row">
<div class="col-sm-12">
<button class="tn btn-lg center-block" id="next-round" type="button" name="button">Continue On</button>
</div>
</div>
</div>
<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/roundover.js"></script>
<!-- HERE IS A COMMENT -->
</body>
</html>