forked from chriskim2311/c9.18_hackathon1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<title>Reversi</title>
</head>
<!-- <div row="1" col="1"></div> -->
<title>Title</title>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="main.js"></script>
</head>
<body>
<div class="container">
<div class="gameBoardBody">
<aside class="stats">
<div class="rules_div"><a href="about.html">Rules Page</a></div>
<div class="stats_title"><h6>STATS</h6></div>
<div class="blacks_title"><h6>Blacks:</h6></div>
<div class="blackScore">0</div>
<div class="whites_title"><h6>Whites:</h6></div>
<div class="whiteScore">0</div>
<button class="resetBtn">Reset Game</button>
</aside>
<aside class="players">
<p id="player1">Player 1</p>
<p id="player2">Player 2</p>
</aside>
<div class="game_board_container">
<div class="game_board_div">
</div>
</div>
<div id="winModal" class="winModal hide">
<div class="modal-body"></div>
<button class="btn btn-success playAgain">Play Again?</button>
</div>
</div>
</div>
</body>
</html>