-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (48 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-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>
<section>
<h1 class="g_title">Tic Tac Toe</h1>
<div class="g_container">
<div data-cell-index="0" class="cell"></div>
<div data-cell-index="1" class="cell"></div>
<div data-cell-index="2" class="cell"></div>
<div data-cell-index="3" class="cell"></div>
<div data-cell-index="4" class="cell"></div>
<div data-cell-index="5" class="cell"></div>
<div data-cell-index="6" class="cell"></div>
<div data-cell-index="7" class="cell"></div>
<div data-cell-index="8" class="cell"></div>
</div>
<br>
<label class="container">Autoplay
<input id="auto" type="checkbox" checked="checked">
<span class="checkmark"></span>
</label>
<br><br>
<button class="g_computer">Computer Move</button>
<button class="g_restart">Restart Game</button>
</section>
<section class="eval">
<progress class="g_assessment" max=100 min=0 value=50></progress>
</section>
<section>
<h2 class="g_sub">Change Training</h2>
<p><span class="diff_val"></span> Games</p>
<br>
<button class="diff_up">Up</button>
<br><br>
<button class="diff_down">Down</button>
</section>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@latest"></script>
<script src="script.js"></script>
</body>
</html>