-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (87 loc) · 3.45 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
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Udacity FEND Nanodegree Project 3 Memory Game"/>
<title>Memory Game</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="icon" type="image/png" href="favicon.ico">
<script defer src="https://use.fontawesome.com/releases/v5.0.9/js/all.js" integrity="sha384-8iPTk2s/jMVj81dnzb/iFR2sdA7u06vHJyyLlAd4snFpCl/SnyUjRrbdJsw1pGIl" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<div class="header">
<h1>The Memory Card Game</h1>
</div>
<section class="score-panel">
<ul class="stars">
<li class="star"></li>
<li class="star"></li>
<li class="star"></li>
</ul>
<p>
<span class="moves"></span> Move(s)
</p>
<div class="timer"></div>
<div class="restart">
<p><i class="fas fa-redo-alt"></i></p>
</div>
</section>
<section id="table"></section>
<section class="footer">
<button class="credits button">Credits</button>
<button class="tutorial button">Tutorial</button>
</section>
<div id="congratulations" class="modal centered">
<div class="modal-content">
<span class="closeCongrats">×</span>
<h1>Congratulations! 😃</h1>
<p><strong>Game completed with:</strong></p>
<p></p>
<p><strong>Time:</strong></p>
<p></p>
<p><strong>Rating:</strong>
<p></p>
<button class="playAgain button">Play Again</button>
</div>
</div>
<div id="credits" class="modal">
<div class="modal-content">
<span class="closeCredits">×</span>
<h1>Credits:</h1>
<article>
Pets, favicon, pointer and rotate screen icon designs made by <a href="http://www.freepik.com/" target="_blank"><strong>Freepik</strong></a> from <a href="https://www.flaticon.com/" target="_blank"><strong>www.flaticon.com</strong></a> distributed under the <a href="https://file000.flaticon.com/downloads/license/license.pdf" target="_blank"><strong>free license</strong></a> with attribution. This means once I attribute them to the author I am allowed to use and alter the contents.
Alterations made by me in this projects concern:
<ul>
<li>modifications to size and color to make the pointer;</li>
<li>modifications to size and color to make the favicon;</li>
<li>modifications to pets' size to put them on a card;</li>
<li>modifications to pets, added missing leg to the chicken, fixed some eyes to make they look happier.</li>
</ul>
</article>
</div>
</div>
<div id="tutorial" class="modal">
<div class="modal-content">
<span class="closeTutorial">×</span>
<h1>Tutorial</h1>
<p>
The game is simple to play, there are 16 couples of cards to match.
</p>
<p>
To restart the game, press the button <i class="fas fa-redo-alt"></i> or the button "Play Again" if you won the game.
</p>
</div>
</div>
<div id="rotate-screen">
<div class="rotate-icon"></div>
<h1>Please rotate your device!</h1>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>