-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (39 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<title>Memory Card Game</title>
<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">
</head>
<body>
<header>
<h1>Memory Game</h1>
</header>
<nav>
<a href="#instruction">Instructions</a>
<a href="#game-board">Game</a>
</nav>
<main>
<h2 id="instruction">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 class="fun">
<h2>What's fun about it? Why should people play?</h2>
<p>Its super fun! Try it for yourself and you will know! <br/>Just give it a try!</p>
</div>
<div id="game-board" class="board clearfix"> <!--
<img src="images/back.png" alt="Queen of Diamonds">
<img src="images/back.png" alt="Queen of Hearts">
<img src="images/back.png" alt="King of Diamonds">
<img src="images/back.png" alt="King of Hearts">-->
</div>
<div id="reset"></div>
<p>Follow me on <a href="#" id="fb">facebook</a> for more games!</p>
</main>
<footer class="clearfix">
<p class="copyright">Copyright 2017</p>
<p class="message">Created with ♥ by <span class="name">ISAAC</span></p>
</footer>
<!--to link to javaScript-->
<script src="js/main.js"></script>
</body>
</html>