-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (85 loc) · 3.38 KB
/
index.html
File metadata and controls
92 lines (85 loc) · 3.38 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!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>Memory game</title>
<link href="https://fonts.googleapis.com/css?family=Bubblegum+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="container">
<div class="top-box">
<div class="score-board border-box">
<div class="score-item">
<p>Attempts: <span id="attempt"></span> </p>
<p>Game mode: <span id="difficulty"></span></p>
</div>
<div class="score-item">
<table class="hscore-normal">
<tr>
<th colspan="4">Highscore:</th>
</tr>
<tr>
<td>1st</td>
<td class="score" id="place0"></td>
<td>4th</td>
<td class="score" id="place3"></td>
</tr>
<tr>
<td>2nd</td>
<td class="score" id="place1"></td>
<td>5th</td>
<td class="score" id="place4"></td>
</tr>
<tr>
<td>3rd</td>
<td class="score" id="place2"></td>
<td>6th</td>
<td class="score" id="place5"></td>
</tr>
</table>
</div>
</div>
</div>
<div class="game-box">
<div class="start-menu border-box">
<h2>Choose your difficulty</h2>
<div class="diff-choice">
<div class="diff" id="easy">Easy</div>
<div class="diff" id="medium">Medium</div>
<div class="diff" id="hard">Hard</div>
</div>
<h2>Start Game</h2>
<img src="./img/arrow-png-26.png" alt="arrow" id="arrow">
<div class="btn-box" id="start-btn">
<div class="underpants"></div>
<div class="bg-star"></div>
</div>
</div>
<div class="card-container">
</div>
</div>
<div class="modal blur">
<div class="modal-content border-box">
<p>Congratulations!!</p>
<p> A winner is you!!!</p>
<div class="new-highscore">
<p>Wow! New Highscore</p>
<h1>Enter your name:</h1>
<input type="text" name="new-name" id="new-name">
<button id="name-input">Enter</button>
</div>
<div class="button-holder">
<button id="backToStart">Back to start menu</button>
<button id="replay">Play Again?</button>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="./js/confetti.js"></script>
<script src="./js/main.js"></script>
</body>
</html>