-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (91 loc) · 2.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Yandex.RTB -->
<script>window.yaContextCb=window.yaContextCb||[]</script>
<script src="https://yandex.ru/ads/system/context.js" async></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<div class="screen">
<h1 class="gameName">Tic taс toe</h1>
<div class="mortalLough"></div>
<a href="#" class="start" id="start">Start Game</a>
<div class="reklam">
<!-- Yandex.RTB R-A-2070830-5 -->
<script>window.yaContextCb.push(()=>{
Ya.Context.AdvManager.render({
type: 'fullscreen',
platform: 'touch',
blockId: 'R-A-2070830-5'
})
})</script>
<!-- Yandex.RTB R-A-2070830-6 -->
<div id="yandex_rtb_R-A-2070830-6"></div>
<script>window.yaContextCb.push(()=>{
Ya.Context.AdvManager.render({
renderTo: 'yandex_rtb_R-A-2070830-6',
blockId: 'R-A-2070830-6'
})
})</script>
</div>
</div>
<div class="screen">
<p class="choose">Select the button</p>
<table>
<tr>
<td class = "cell" id = "0"></td>
<td class = "cell" id = "1"></td>
<td class = "cell" id = "2"></td>
</tr>
<tr>
<td class = "cell" id = "3"></td>
<td class = "cell" id = "4"></td>
<td class = "cell" id = "5"></td>
</tr>
<tr>
<td class = "cell" id = "6"></td>
<td class = "cell" id = "7"></td>
<td class = "cell" id = "8"></td>
</tr>
<div class="guys">
<div class="dots">X</div>
<div class="dots2">O</div>
</div>
</table>
<div class="modal hide">
<div class="modal__dialog">
<div class="modal__content">
<form action="#">
<div data-close class="modal__close">×</div>
<div class="modal__title"></div>
<button class="btnRestart"> restart </button>
</form>
</div>
</div>
<!-- Yandex.RTB R-A-2070830-3 -->
<script>window.yaContextCb.push(()=>{
Ya.Context.AdvManager.render({
type: 'fullscreen',
platform: 'touch',
blockId: 'R-A-2070830-3'
})
})</script>
<!-- Yandex.RTB R-A-2070830-1 -->
<div id="yandex_rtb_R-A-2070830-1"></div>
<script>window.yaContextCb.push(()=>{
Ya.Context.AdvManager.render({
renderTo: 'yandex_rtb_R-A-2070830-1',
blockId: 'R-A-2070830-1'
})
})</script>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js" integrity="sha512-aVKKRRi/Q/YV+4mjoKBsE4x3H+BkegoM/em46NNlCqNTmUYADjBbeNefNxYV7giUp0VxICtqdrbqU7iVaeZNXA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="script.js"></script>
</body>
</html>