-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Droid+Serif|Raleway:400,500,600,700" rel="stylesheet">
<title> Memory Game</title>
</head>
<body>
<header>
<h1> Memory Game </h1>
</header>
<nav>
<h2> <a href="#instructions">Instructions</a> <a href="#game">Game</a> </h2>
</nav>
<main>
<a name="#instructions"></a>
<h3> Instructions </h3>
<p> Concentration, also known as Match Match, Memory, Pelmanism, Shinkei-suijaku, Pexeso or simply Pairs, is a card game in which all 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>
<br>
<p> About the game: Add description here! About the developer! Add social media links here!</p>
<a name="#game"></a>
<div id="game-board" class="board clearfix"></div>
</main>
<footer class="clearfix">
<p class="copywrite"> Copyright 2017 </p>
<p class="message">Created with ♥ by <span class="name">GA</span></p>
</footer>
<script src="js/main.js"></script>
</body>
</html>