-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (53 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="https://code.jquery.com/jquery-3.0.0.js"></script>
<script src="dist/sweetalert.min.js"></script>
<link rel="stylesheet" type="text/css" href="dist/sweetalert.css">
<script src="js/main.js"></script>
<link rel="stylesheet" type="text/css" href="css/main.css">
<title>Tic Tac Toe</title>
</head>
<body>
<div class="wrapper">
<h1>Tic Tac Toe</h1>
<div class="gameboard">
<div class="Row1">
<div class="box" id="cell1"> </div>
<div class="box" id="cell2"> </div>
<div class="box" id="cell3"> </div>
</div>
<div class="Row2">
<div class="box" id="cell4"> </div>
<div class="box" id="cell5"> </div>
<div class="box" id="cell6"> </div>
</div>
<div class="Row3">
<div class="box" id="cell7"> </div>
<div class="box" id="cell8"> </div>
<div class="box" id="cell9"> </div>
</div>
</div>
<div class="buttons">
<button id="new-game"><strong>New Game</strong></button>
</div>
<div class="scoreboard">
<div class="playerone">
<img src="images/Redcrossnew.png" height="20px">
<h4> Player One Score</h4>
<div id="playerOneScoreboard">
<p id="player1notes">0</p>
</div>
</div>
<div class="playertwo">
<img src="images/circle-small.png" height="20px">
<h4> Player Two Score</h4>
<div id="playerTwoScoreboard">
<p id="player2notes">0</p>
</div>
</div>
</div>
</div>
</body>
</html>