-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (58 loc) · 2.22 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
<!DOCTYPE html>
<html>
<head>
<title>Tic-Tac-Toe</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="./build/css/main.css">
</head>
<body>
<div class="wrap">
<div class="statistic">
<span class="left textStatistic" data-player1>Player 1: 0</span>
<span class="right textStatistic" data-player2>Player 2: 0</span>
</div>
<h1 class="text">x<span class="textSpec"> vs </span>o</h1>
<table class="table">
<tr>
<td class="cell" data-cell></td>
<td class="cell" data-cell></td>
<td class="cell" data-cell></td>
</tr>
<tr>
<td class="cell" data-cell></td>
<td class="cell" data-cell></td>
<td class="cell" data-cell></td>
</tr>
<tr>
<td class="cell" data-cell></td>
<td class="cell" data-cell></td>
<td class="cell" data-cell></td>
</tr>
</table>
<div class="left info">
<div>
<img src="../build/img/wasd.png" alt="">
<p> - movement within cells</p>
</div>
<div>
<img src="../build/img/z.png" alt="">
<p> - put a symbol</p>
</div>
</div>
<div class="right info">
<div>
<img src="../build/img/arrow.png" alt="">
<p> - movement within cells</p>
</div>
<div>
<img src="../build/img/0.png" alt="">
<p> - put a symbol</p>
</div>
</div>
<h1 class="footer">Created by <a target="_blank" href="https://github.com/LefkaLefka">Lefka</a></h1>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!--<script src="../node_modules/jquery/dist/jquery.js"></script>-->
<script src="../build/js/main.js"></script>
</body>
</html>