-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
75 lines (69 loc) · 2.51 KB
/
home.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
<!DOCTYPE html>
<html ng-app="TTTapp">
<head>
<meta charset="utf-8">
<title>TTT</title>
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<link href='//fonts.googleapis.com/css?family=Shadows+Into+Light|Bangers' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/angular.js"></script>
<!-- // <script src="https://cdn.firebase.com/js/client/2.0.4/firebase.js"></script>
// <script src="https://cdn.firebase.com/libs/angularfire/0.9.0/angularfire.min.js"></script> -->
<script src="js/app.js"></script>
<!-- // <script src="js/fireBoard.js"></script> -->
<script src="js/TTTcontroller.js"></script>
</head>
<header>
<a target="_top" href="http://www.flamingtext.com/" ><img src="http://blog.flamingtext.com/blog/2014/12/08/flamingtext_com_1418002383_249422708.png" border="0" alt="Logo Design by FlamingText.com" title="Logo Design by FlamingText.com"></a>
</header>
<body ng-controller="TTTcontroller as game">
<section id="container">
<div id="floydm">
<iframe src="http://giphy.com/embed/7ipn23959wWCQ?html5=true" width="480" height="368" frameBorder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><br>
<button ng-click="game.resetGame()">Reset Game</button>
</div>
<div id="mannym">
<iframe src="http://giphy.com/embed/Fra6axm296NcQ?html5=true" width="480" height="368" frameBorder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><br>
<button ng-click="game.resetGame()">Reset Game</button>
</div>
<div id="game-board">
<div class="squares"
ng-repeat="tile in game.gameBoard track by $index"
ng-click="game.clickBox($index)">
{{tile}}
</div>
<button ng-click="game.startTimer()">Start Game</button>
<div id="countdown"></div>
<div id="scoreOne">Mayweather<br>{{game.playerOneScore}}</div>
<div id="scoreTwo">Pacquiao<br>{{game.playerTwoScore}}</div>
</div>
</section>
</body>
<br>
<br>
<footer>
<img id="floyd" src="images/floyd2.png">
<img id="manny" src="images/manny3.png">
<div id="statsOne">
<h3>Floyd "Money" Mayweather, Jr</h3>
<ul>
<li>Record: 47 - 0 - 0</li>
<li>Height: 5'8"</li>
<li>Reach: 72"</li>
<li>KO's: 26</li>
</ul>
</div>
<div id="statsTwo">
<h3>Manny "Pac-Man" Pacquiao</h3>
<ul>
<li>Record: 57 - 5 - 2</li>
<li>Height: 5'6"</li>
<li>Reach: 67"</li>
<li>KO's: 38</li>
</ul>
</div>
</footer>
</html>