-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
40 lines (37 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<script src="./script.js"></script>
<title>Tic Tak Toe</title>
</head>
<body>
<header>
<h1>PLAY TIC TAC TOE</h1>
<h2 id="result">RESULT</h2>
</header>
<section id="game">
<div id="tiles">
<canvas id="canvas-0"></canvas>
<canvas id="canvas-1"></canvas>
<canvas id="canvas-2"></canvas>
<br>
<canvas id="canvas-3"></canvas>
<canvas id="canvas-4"></canvas>
<canvas id="canvas-5"></canvas>
<br>
<canvas id="canvas-6"></canvas>
<canvas id="canvas-7"></canvas>
<canvas id="canvas-8"></canvas>
</div>
<button id="new-game" class="btn">NEW GAME</button>
<br>
<p class="notes">Get the source code @ <a target="_blank" href="https://github.com/phantomlabs/tic-tac-toe">Phantom
Laboratory</a>
</p>
</section>
</body>
</html>