forked from kirkwood616/js-project-memory-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (46 loc) · 1.48 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 lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Animal Memory Game</title>
<link rel="shortcut icon" type="image/jpg" href="assets/treeFavicon.png"/>
<link rel="stylesheet" href="style.css" />
<style>
@import url("https://fonts.googleapis.com/css2?family=Orbitron&family=Zen+Tokyo+Zoo&display=swap");
</style>
</head>
<body>
<div id="header"><h2>Animal Memory Match</h2></div>
<div id="startContainer">
<div id="start">
<h1>Animal Memory Match</h1>
<button type="submit" id="startBtn">
<div class="start">START</div>
</button>
</div>
</div>
<div id="main"></div>
<div id="bottomContainer">
<div class="tm-container">
<div id="timer">0:00</div>
<div id="moves">Moves: 0</div>
</div>
<div id="reset">
<button type="submit" id="reset" onclick="reset()">RESET</button>
</div>
</div>
<div class="winWindow">
<img src="assets/trophyIcon1.jpg" id="trophy" alt="trophy" />
<h3>YOU WON!</h3>
<p>It Took You</p>
<p class="pTime"></p>
<p class="plusSign">+</p>
<p class="pMoves"></p>
<p>To Complete The Game</p>
<button type="submit" id="playAgain" onclick="reset()">PLAY AGAIN</button>
</div>
<script src="script.js"></script>
</body>
</html>