-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (57 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Memory Game</title>
<link rel="icon" type="image/png" href="img/favicon.png">
<link href="css/fontawesome-all.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- only for development environment
<link href="less/style.less" rel="stylesheet/less">
<script src="js/less.min.js"></script> -->
</head>
<body>
<main id="game-timer">
<h1 id="restart" class="fas fa-sync-alt"></h1>
<div class="stopwatch">
<h1 class="landscape">Minutes</h1>
<h1 id="min">00</h1>
<h1 class="landscape">Seconds</h1>
<h1 class="potrait">:</h1>
<h1 id="sec">00</h1>
<h1 class="landscape">Miliseconds</h1>
<h1 class="potrait">:</h1>
<h1 id="mil">000</h1>
</div>
</main>
<main id="game" class="center">
<!-- Here is generating game grid -->
</main>
<main id="game-stars">
<div class="stars">
<h1 id="star3" class="fas fa-star star-text"></h1><br class="potrait">
<h1 id="star2" class="fas fa-star star-text"></h1><br class="potrait">
<h1 id="star1" class="fas fa-star star-text"></h1><br class="potrait">
</div>
<br>
<div class="moves">
<h1>moves</h1>
<h1 class="potrait">: </h1>
<h1 id="clicks">0</h1>
</div>
</main>
<main id="end" class="center">
<h1 id="end-msg"></h1>
<h1 id="time"></h1>
<div id="rating" class="rating">
<h1 id="end-star1" class="fas fa-star"></h1>
<h1 id="end-star2" class="fas fa-star"></h1>
<h1 id="end-star3" class="fas fa-star"></h1>
</div>
<h1 id="restart-end" class="fas fa-sync-alt"></h1>
</main>
<div class="menu-bg"></div>
<script src="js/app.js"></script>
</body>
</html>