-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (25 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset = UTF-8">
<title>Пятнашки</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="main.js"></script>
<link type="text/css" href="main.css" rel="stylesheet" media="all">
</head>
<body>
<div class="main">
<div class="game-field"></div>
<div class="info-box">
<div class="counter-text">Сделанные шаги: <span class="count-steps">0</span></div>
<div class="loader hide"></div>
<div class="clear"></div>
<p class="error hide">Решения не существует</p>
</div>
<div class="action-buttons">
<span class="start-button">Перемешать</span>
<span class="resolve-button hide">Решить</span>
</div>
</div>
</body>
</html>