-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (54 loc) · 1.76 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" type="image/png" href="https://mblocks.jala.in.ua/img/mblocks_favicon.png"/>
<title>Memory Blocks Game</title>
<!--<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">-->
<link rel="stylesheet" href="app.css">
</head>
<body>
<header class="fb-row fb-around">
<div class="fb-row fb-between controls logo">
<img src="https://mblocks.jala.in.ua/img/mblocks_favicon.png" alt="" title="Memory Blocks Game">
<span>Memory Blocks Game</span>
</div>
<div class="fb-row fb-between controls">
<button title="New Game" id="new-game-button">
<i class="fas fa-flag-checkered"></i>
</button>
<button title="Login" id="login-button">
<i class="fas fa-user"></i>
</button>
<button title="Settings" id="settings-button">
<i class="fas fa-sliders-h"></i>
</button>
<button title="Best Results" id="results-button">
<i class="fas fa-trophy"></i>
</button>
</div>
</header>
<main class="fb-row fb-center">
<div class="cards-container"
id="game-container"
>
</div>
</main>
<footer class="fb-row fb-around" id="state-bar">
<span class="hint">
</span>
<span class="time">
Time: 0 sec
</span>
<span class="score">
30 / 30
</span>
<span class="flipped">
Flipped: 0
</span>
</footer>
</body>
</html>