-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (44 loc) · 1.04 KB
/
index.html
File metadata and controls
51 lines (44 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>🤖</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Kodchasan" rel="stylesheet">
</head>
<body>
<header class='blink-title'>🤖 Tic Tac Bot 🤖</header>
<table class='board'>
<tr>
<td class='grid' id='1'></td>
<td class='grid' id='2'></td>
<td class='grid' id='3'></td>
</tr>
<tr>
<td class='grid' id='4'></td>
<td class='grid' id='5'></td>
<td class='grid' id='6'></td>
</tr>
<tr>
<td class='grid' id='7'></td>
<td class='grid' id='8'></td>
<td class='grid' id='9'></td>
</tr>
</table>
<p id='message'></p>
<section>
<div id='notification'>
<div id="text"></div>
</div>
<div class='buttons'>
<button class='btn1-player'>Solo Fun</button>
<button class='btn2-players'>2 Players</button>
</div>
<aside class='scoreboard'>
<div id='p1-scores'></div>
<div id='p2-scores'></div>
</aside>
</section>
<script src="app.js"></script>
</body>
</html>