-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
72 lines (63 loc) · 2.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Fiestardy</title>
<!-- Adds Bootstrap library and CSS file -->
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="styles/style.css">
<link href="https://fonts.googleapis.com/css?family=Indie+Flower|Modak|Pacifico" rel="stylesheet">
<!-- Adds animate.css library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.1/animate.min.css">
<!-- Adds JQuery and Ajax libraries and the Javascript file -->
<script src="http://code.jquery.com/jquery-2.2.2.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="scripts/coolFacts.js" type="text/javascript"></script>
<script src="scripts/script.js" type="text/javascript"></script>
</head>
<body>
<div class="row">
<div class="col-md-4 game-title text-center">FIESTARDY</div>
<div class="col-md-4 col-md-offset-4">
<a href="drumkit.html" class="drum-kit button">No Friends? Bored? PLAY SOLO!!!</a>
</div>
</div>
<div class="container-fluid">
<div class="row" id="row1">
<div class="col-md-3"><div id="scoresX" class="buzzer">0</div></div>
<div class="col-md-6 alerts" id="alerts"></div>
<div class="col-md-3"><div id="scoresY" class="buzzer">0</div></div>
</div>
<div class ="row" id="row2">
<div class="col-md-3" id="Xside">
<h1 id="player1">Player 1
<p>Use the letter S</p>
</h1>
<img id="players" src="media/images/avatar-1.jpeg" height="200px" width="200px">
<img id="buzzerX" src="https://pbs.twimg.com/profile_images/722412969/_big.png" height="80px" width="80px">
</div>
<div class="col-md-6" id="boardCol">
<div id="board">
</div>
</div>
<div class="col-md-3" id="Yside">
<h1 id="player2">Player 2
<p>Use the letter L</p>
</h1>
<img id="players" src="media/images/avatar-2.jpeg" height="200px" width="200px">
<img id="buzzerY" src="https://pbs.twimg.com/profile_images/722412969/_big.png" height="80px" width="80px">
<!-- <div class="triangle" id="buzzerY"></div> -->
</div>
</div>
<br>
</div>
<div class="row" id="row3">
<div class="col-md-3" id="coolfacttitle">DID</br>YOU</br>KNOW?</div>
<div class="col-md-9" id="coolfact"></div>
</div>
<!-- <div id="boardFrame"></div> -->
</body>
</html>