-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (69 loc) · 2.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta author="Magda Mieczynska">
<link rel="stylesheet" href="build/style.css">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900" rel="stylesheet">
<link rel="stylesheet prefetch" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<link rel="stylesheet prefetch" href="https://fonts.googleapis.com/css?family=Coda">
<title>Memory Game</title>
</head>
<body>
<div class="container">
<header>
<h1>Memory Game - Find a matching pair</h1>
</header>
<!-- SCORE PANEL with TIMER and STAR RATING -->
<section class="score-panel">
<ul class="rating">
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
<li><i class="fa fa-star"></i></li>
</ul>
<span class="moves">0</span>
<span class="timer">00 mins:00 secs</span>
<div class="restart">
<a class="btn restart-button" href="#"><i class="fa fa-repeat"></i></a>
<!-- <span class="restart"><i class="fa fa-repeat score-button"></i></span>
<span class="help"><i class="fa fa-lightbulb-o score-button"></i></span> -->
<a class="btn vocab-bulb" href="#"><i class="fa fa-lightbulb-o"></i></a>
</div>
</section>
<!--GAMEBOARD-->
<ul id="gameboard" class="deck">
</ul>
<!--VOCABULARY LIST POPUP-->
<div id="vocabulary-popup-window">
<div class="modal-content">
<h3>Vocabulary list</h3>
<!-- <a class="close-modal" href="#" >×</a> -->
<ul class="translations">
<li></li>
</ul>
<button id="vocab-btn" class="reload-button">Close</button>
</div>
</div>
<!--CONGRATULATIONS POPUP-->
<div id="popup-window">
<div class="modal-content">
<h3>Congratulations, you won!</h3>
<a class="close-modal" href="#" >×</a>
<h4>Parabéns :)</h4>
<p>Your rating: <span id="star-rating-info"></span></p>
<p>Your result: <span id="total-moves"></span> moves </p>
<p>in <span id="total-time"> </span> </p>
<button id="modal-btn" class="reload-button restart-button">Play again</button>
</div>
</div>
<!--FOOTER-->
<footer>
<p>Project for Google | Udacity Scholarship created by MagdaM | 2018</p>
<p>Background image by <a href="https://www.freepik.com/free-vector/beautiful-skyline-of-lisbon_1934278.htm">Freepik</a> & animal icons from <a href="www.flaticon.com">Flaticon</a></p>
</footer>
</div>
<script src="app.js"></script>
</body>
</html>