-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhint.html
50 lines (43 loc) · 1.27 KB
/
hint.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
<!doctype html>
<html lang="ru" data-ng-app="mainModule">
<head>
<meta charset="UTF-8">
<title>ActiGuide — Хинты</title>
<link rel="stylesheet" href="out/style.min.css"/>
<script type="text/javascript" src="out/libs.min.js"></script>
<script type="text/javascript" src="out/app.min.js"></script>
</head>
<body>
<div class="wrapper">
<section class="content">
<!-- Заголовок -->
<div class="m-box">
<div class="box">
<h1 class="name-page">Хинты</h1>
</div>
</div>
<div class="m-box">
<div class="col-3">
<div class="box">
<p>
<span data-hint="Привет!">
Наведи на меня!
</span>
</p>
<p>
<span data-hint="Какая-то подсказка">
Какой-то текст
</span>
</p>
<p>
<span data-hint="Еще какая-то подсказка">
Еще один какой-то текст
</span>
</p>
</div>
</div>
</div>
</section>
</div>
</body>
</html>