forked from KD-Games/Project1-Memory-Game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
34 lines (31 loc) · 1.01 KB
/
main.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>
<title>Memory Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<img src="./images/brain-cartoon.png" alt="Mascot" />
<h1>Memory Game</h1>
</header>
<section class="description">
<h2>Let's Play a Game!</h2>
<p>Welcome! We have an exciting game for you to play! Here are the rules to follow:</p>
<ul>
<li>You start out with a score of 100.</li>
<li>Each unsuccessful match will reduce your score by 5</li>
<li>Don't let your score go below 0 or it's GAME OVER!</li>
<li>When you pass a level, you'll receive additional points</li>
</ul>
</section>
<section class="level-title"><h2>Choose your Level:</h2></section>
<section class="game-btns">
<button id="child" type="button">Children</button>
<button id="adult" type="button">Adults</button>
</section>
</div>
<script src="script.js"></script>
</body>
</html>