-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (71 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Mamon AI</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<html>
<head>
<title></title>
</head>Крестики нолики
<body>
<main>
<h1>Тут без калькулятора не обойтись </h1>
<h3><a href="/dev/ai">СКАЧАТЬ ИСХОДНИК</a></h3>
<br>
<table class="board">
<tr>
<td>
<div id="0" class="square left top"> </div>
</td>
<td>
<div id="1" class="square top v-middle"> </div>
</td>
<td>
<div id="2" class="square right top"> </div>
</td>
</tr>
<tr>
<td>
<div id="3" class="square left h-middle"> </div>
</td>
<td>
<div id="4" class="square v-middle h-middle"> </div>
</td>
<td>
<div id="5" class="square right h-middle"> </div>
</td>
</tr>
<tr>
<td>
<div id="6" class="square left bottom"> </div>
</td>
<td>
<div id="7" class="square bottom v-middle"> </div>
</td>
<td>
<div id="8" class="square right bottom"> </div>
</td>
</tr>
</table>
<br>
<div id="messageBox">Выбери квадрат!</div>
<br>
<div class="controls">
<button class="button" onclick="resetGame()">Сыграй еще раз</button>
<select id="difficulty">
<option value="moron" selected >Тупой как Блохина</option>
<option value="genius">Гений как Славка</option>
</select>
</div>
</main>
<script src="tic-tac-toe.js"></script>
</body>
</html>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>