-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (26 loc) · 969 Bytes
/
index.html
File metadata and controls
30 lines (26 loc) · 969 Bytes
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
<!DOCTYPE html>
<html lang="ru-RU">
<head>
<title>Начать игру</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--[if lte IE 8]><script src="js/ie/ie.min.js"></script><![endif]-->
<link rel="stylesheet" href="css/main.min.css">
</head>
<body>
<div class="container" data-tid="App">
<div class="logo logo-start">
<img class="logo__image" src="img/StartGame.png" alt="picture">
</div>
<h1 class="header">Memory Game</h1>
<ul class="control-buttons">
<li class="control-buttons__item">
<a class="button" href="game.html" id="start" data-tid="NewGame-startGame">Начать игру</a>
</li>
</ul>
</div>
<script src="js/libs.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>