-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (61 loc) · 1.46 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
<!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">
<title>TIC TAC TOE</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class='wrapper'>
<img src='images/diggeryel.png'>
<h1>Tic Tac Truck</h1>
<img src='images/hammerspanyel.png'>
</div>
</header>
<nav>
<!-- <button id='newGame'>New Game</button> -->
<button id='reset'>Reset</button>
</nav>
<div id='board'>
<aside id='player1'>
<h3>PLAYER 1</h3>
<h2 class='score'>Score: <span id='play1score'>0</span></h2>
</aside>
<main>
<table class='game'>
<th>
</th>
<tr>
<td id='0'></td>
<td id='1'></td>
<td id='2'></td>
</tr>
<tr>
<td id='3'></td>
<td id='4'></td>
<td id='5'></td>
</tr>
<tr>
<td id='6'></td>
<td id='7'></td>
<td id='8'></td>
</tr>
</table>
</main>
<aside id='player2'>
<h3>PLAYER 2</h3>
<h2 class='score'>Score: <span id='play2score'>0</span></h2>
</aside>
</div>
<footer>
<p>
<!-- <span>©</span> -->
Created by Sophie McDonald. Image right's belong to those I stole images from.</p>
<!-- <img src=''> -->
</footer>
<script src='app.js'></script>
</body>
</html>