-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.05 KB
/
index.html
File metadata and controls
35 lines (32 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Droid+Serif|Raleway:400,500,600,700" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" type="text/css">
<title>Memory Card Game</title>
</head>
<body>
<main>
<header class="clearfix">
<h1>Memory Card Game</h1>
</header>
<nav>
<a href="#">Instructions</a>
<a href="#">Game</a>
</nav>
<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>
</main>
<footer class="clearfix">
<p class="copyright"> Copyright 2017</p>
<p class="message">Created with ♥ by <span class="name">GA</span>
</footer>
</div>
<script src="js/main.js"></script>
</body>
</html>