-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (34 loc) · 1.49 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Змейка</title>
<link rel="stylesheet" href="style.css?=71">
</head>
<body class="page">
<div class="canvas-box">
<script src="scripts/build-canvas.js?=1"></script>
</div>
<div class="control-box">
<button class="btn-start">Start</button>
<div class="btns">
<svg class="up" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<polyline points="20 70 50 30 80 70" stroke="black" fill="transparent" stroke-width="10"/>
</svg>
<div class=" btns__flex-row">
<svg class="left" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<polyline points="70 20 30 50 70 80" stroke="black" fill="transparent" stroke-width="10"/>
</svg>
<svg class="right" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<polyline points="30 20 70 50 30 80" stroke="black" fill="transparent" stroke-width="10"/>
</svg>
</div>
<svg class="down" version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<polyline points="20 30 50 70 80 30" stroke="black" fill="transparent" stroke-width="10"/>
</svg>
</div>
</div>
<script type="module" src="scripts/play.js?=15"></script>
</body>
</html>