-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (81 loc) · 2.44 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!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" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="./assets/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/favicon/favicon-16x16.png"
/>
<link rel="mask-icon" href="./assets/favicon/favicon.ico" color="#f8d24e" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>MPG</title>
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="header__container">
<h1 class="title">Memory-pair game</h1>
<h2 class="subtitle">~ Find all 6 pairs! ~</h2>
<h3 class="timer">Timer: <span class="time">00:00</span></h3>
<nav class="menu__body">
<ul class="menu__list">
<li class="menu__item">
<a
href="https://github.com/YuliiaDikun"
target="_blank"
class="menu__link"
>Author</a
>
</li>
<li class="menu__item">
<a
href="https://github.com/YuliiaDikun/kottans-frontend"
target="_blank"
class="menu__link"
>Find more</a
>
</li>
<li class="menu__item">
<a href="" class="menu__link">Reset game</a>
</li>
</ul>
</nav>
</div>
</header>
<main class="game"></main>
<footer class="footer">
<h2 class="footer_title">Create with love ♥</h2>
</footer>
</div>
<div class="overlay">
<div class="modal">
<div data-close class="modal__close">×</div>
<div class="modal__title">
You won in <span class="user_moves"></span> moves and
<span class="user_time"></span>!
</div>
<div class="modal__subtitle">♥ Congrats ♥</div>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>