-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (38 loc) · 1.41 KB
/
index.html
File metadata and controls
46 lines (38 loc) · 1.41 KB
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
<!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">
<title>Memory Card Game</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Droid+Serif|Raleway:400,500,600,700">
</head>
<body>
<header>
<h1>Memory Game</h1>
</header>
<nav>
<a href="#">Instructions</a>
<a href="#">Game</a>
</nav>
<!--h2>Test your focus</h2>
<p>Wanna see how good your focus is and how your brain handles a lot of
information thrown at it? Let's find out.</p -->
<main>
<h2>Instructions</h2>
<p>Concentration, also known as Match Match, Memory, Pelmanism,
Shinkei-suijaku, Pexeso or simply Pairs, is a card game in which all of
the cards are laid face down on a surface and two cards are flipped face
up over each turn. The object of the game is to turn over pairs of
matching cards.</p>
<div id="game-board" class="board clearfix"></div>
<button id="restartButton">Restart Game</button>
</main>
<footer class="clearfix">
<p class="copyright">Copyright 2017</p>
<p class="message">Created with ♥ by <span class="name">GA</span></p>
</footer>
<script src="js/main.js"></script>
</body>
</html>