-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (34 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>X - O Game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="score-board">
<svg version="1.1" id="prefix__Layer_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 512 512" xml:space="preserve"><style>.prefix__st0{fill:none;stroke:orange;stroke-width:100;stroke-linecap:round;stroke-miterlimit:10}</style><path class="prefix__st0" d="M116 116l280 280M116 396l280-280"/></svg><p id="xScore">0</p>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><circle cx="256" cy="256" r="180.4" fill="none" stroke="orange" stroke-width="75" stroke-linecap="round" stroke-miterlimit="10"/></svg><p id="oScore">0</p>
<button id="score-reset" onclick="scoreReset()">О</button>
</div>
<div id="container">
<div class="bb br"></div>
<div class="bb bl br"></div>
<div class="bb bl"></div>
<div class="bb bt br"></div>
<div class="bb bl bt br"></div>
<div class="bb bl bt"></div>
<div class="bt br"></div>
<div class="bl bt br"></div>
<div class="bl bt"></div>
<div id="winLine"></div>
</div>
<div id="winDow">
<h1></h1>
<button onclick="winDowClose()">OK</button>
</div>
<script src="main.js"></script>
</body>
</html>