generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (27 loc) · 1.25 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
<!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>MS2 - Memory Game</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/52177094a7.js" crossorigin="anonymous"></script>
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon//favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<div class="outer-container-home">
<div class="inner-container-home">
<h2>How To Play</h2>
<img class="home-img" src="images/chick.svg" alt="image of a chick">
<p>- There are 16 cards, 8 matching pairs.</p>
<p>- Click on a card to reveal image behind it.</p>
<p>- Match the 8 pairs of cards in as few moves and as little time as possible</p>
<a class="start" href="home.html">Start Game</a>
</div>
</div>
</body>
</html>