-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (46 loc) · 1.55 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
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Memory Game</title>
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="icon" href="./resources/images/favicon.ico" type="type/ico">
</head>
<body>
<div class="container-start">
<h1>Memory//////</h1>
<h3>Star Wars Edition</h3>
<button id="start-game">New Game</button>
<div class="mode-buttons">
<input type="button" name="startEasy" value="easy mode" id="start-easy" class="hide" data-cardNum="9" />
<input type="button" name="startEasy" value="hard mode" id="start-hard" class="hide" data-cardNum="12" />
</div>
<div class="icon-buttons">
<img src="./resources/images/speaker.svg" id="speaker"/>
<img src="./resources/images/backBtn.svg" id="backBtn"/>
</div>
</div>
<div id="points" class="hide">
<span class="points-message">Points: </span>
<span class="points-total"></span>
</div>
<div id="timer" class="hide">
<span class="timer-message">time: </span>
<span class="timer-display" id="timecount"></span>
</div>
<div id="gameboard"></div>
<div id="r2">
<img src="./resources/images/r2d2starter.svg" alt="r2 droid">
</div>
<div id="health" class="hide">
<span class="health-message">Health: </span>
<progress value="100" max="100" id="healthbar"></progress>
</div>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="main.js"></script>
</body>
</html>