-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
103 lines (92 loc) · 2.92 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
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Play the classic memory game with your favorite themes. Be as fast as possible and spare your clicks!"
/>
<meta name="keywords" content="Memory" />
<meta name="author" content="Rémy Beumier" />
<meta property="og:title" content="Memory" />
<meta property="og:type" content="" />
<meta property="og:url" content="https://beumsk.github.io/Memory" />
<meta
property="og:image"
content="https://beumsk.github.io/Memory/cover.jpg"
/>
<meta
property="og:image:secure_url"
content="https://beumsk.github.io/Memory/cover.jpg"
/>
<meta
property="og:description"
content="Play the classic memory game with your favorite themes. Be as fast as possible and spare your clicks!"
/>
<link rel="stylesheet" href="./style.css" />
<title>Memory</title>
</head>
<body>
<header>
<h1>MEMORY</h1>
</header>
<section class="main">
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div class="box play"></div>
<div id="state">
<span id="time">0</span>
<span id="score">0</span>
</div>
</section>
<footer>
<p>
Created by
<a href="https://remybeumier.be" target="_blank">Rémy Beumier</a>
</p>
</footer>
<section id="pre" class="">
<div id="themes">
<h2>Choose your theme</h2>
<p id="pokemon" class="themes" title="Pokemon">Pokemon</p>
<p id="starwars" class="themes" title="Star Wars">Star Wars</p>
<p id="lotr" class="themes" title="Lord of the Ring">
Lord of the Ring
</p>
<p id="disney" class="themes" title="Disney">Disney</p>
<p id="pixar" class="themes" title="Pixar">Pixar</p>
<p id="harrypotter" class="themes" title="Harry Potter">Harry Potter</p>
</div>
</section>
<section id="post" class="hidden">
<div>
<h2>BRAVO !</h2>
<p id="final"></p>
<br />
<p>
<a id="again">Play Again !</a>
</p>
</div>
</section>
<script src="./script.js"></script>
</body>
</html>