forked from MatchStravaganza/memory-game
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
65 lines (59 loc) · 1.9 KB
/
game.html
File metadata and controls
65 lines (59 loc) · 1.9 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/game.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Titillium+Web:wght@400;600&display=swap');
</style>
<title>Code Gamez</title>
</head>
<body>
<header>
<section id="nav-row-1">
<div> <a href="index.html"><img src="img/logo.jpg"></a></div>
<div><h1>Code Gamez</h1></div>
<div id="username-sponsor">
<div id="username">New User</div>
<div><img id="code-fellows-img" src="img/code-fellows-logo.jpeg"></div>
</div>
</section>
<hr>
<nav id="nav-row-2">
<a class="nav" href="index.html">Home</a>
<a class="nav" href="game.html">Game of The Week</a>
<a class="nav" href="hi-scores.html">High Scores</a>
</nav>
</header>
<main>
<section>
<div id="Matchstravaganza">
<h2>Matchstravaganza</h2>
</div>
<div id="timer">
</div>
</section>
<section id="game">
<!----Insert js cards here-->
</section>
<div id="start-game">Start Game</div>
<div id="reset-game">Reset Game</div>
<section id="instructions">
<h3>How the game works!</h3>
<ol>
<li>Press “Start” to begin the game and start the timer.</li>
<li>Pick a card to reveal what is behind it.</li>
<li>Pick a second card in the same manner.</li>
<li>If they are the same image you made a successful match.</li>
<li>If not they will turn back over and you must exercise your memory to find all the matches.</li>
<li>Do this before the timer runs out to win the game!</li>
</ol>
</section>
</main>
<hr>
<footer>
</footer>
<script src="js/game.js"></script>
</body>
</html>