-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 1.5 KB
/
index.html
File metadata and controls
34 lines (30 loc) · 1.5 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
<!doctype html>
<head>
<link href="https://fonts.googleapis.com/css?family=Droid+Serif|Raleway:400,500,600,700" rel="stylesheet">
<link href="/Users/user/Downloads/wdi-fundamentals-memorygame-master/memory-game/css/style.css" rel="stylesheet" type="text/css">
<title>Memory Card Game</title>
</head>
<body>
<header>
<h1> Memory Game</h1>
</header>
<nav>
<a href="#">Instructions</a>
<a href="#">Game</a>
</nav>
<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>
<img src="/Users/user/Downloads/wdi-fundamentals-memorygame-master/memory-game/images/back.png" alt="Queen of Diamonds">
<img src="/Users/user/Downloads/wdi-fundamentals-memorygame-master/memory-game/images/back.png" alt="Queen of Hearts">
<img src="/Users/user/Downloads/wdi-fundamentals-memorygame-master/memory-game/images/back.png" alt="King of Diamonds">
<img src="/Users/user/Downloads/wdi-fundamentals-memorygame-master/memory-game/images/back.png" alt="King of Hearts">
</div>
</main>
<script src="/Users/user/Downloads/wdi-fundamentals-memorygame-master/memory-game/JS/main.js"></script>
</body>
<footer class ="clearfix">
<p class = "copyright"> Copyright 2017 </p>
<p class ="message">Created with ♥ by <span class = "name">GA</span>
</footer>
</html>