-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
52 lines (51 loc) · 1.8 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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
property="og:title"
content="Halloween Memory Game 🎃 - Jogo da Memória Temático de Halloween"
/>
<meta
property="og:description"
content="Desafie sua memória com cartas assustadoras no Halloween Memory Game! Encontre todos os pares e divirta-se."
/>
<meta property="og:url" content="https://dio-memory-game.vercel.app/" />
<meta property="og:type" content="website" />
<title>Halloween Memory Game</title>
<link
rel="shortcut icon"
href="./src/images/favicon.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="./src/styles/reset.css" />
<link rel="stylesheet" href="./src/styles/main.css" />
</head>
<body>
<button class="music-btn" onclick="toggleMusic()">🔊</button>
<div class="container">
<h2>Halloween Memory Game</h2>
<div class="game"></div>
<button class="Btn" id="btn" onclick="startLoading()">RESET GAME</button>
<div class="spinner" id="spinner" style="display: none"></div>
</div>
<div id="gameTimer">Time: 0s</div>
<div class="toast show" id="winToast" style="display: none">
You Win!
<img
src="https://raw.githubusercontent.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/master/Emojis/Activities/Party%20Popper.png"
alt="Party Popper"
width="35"
height="35"
/>
<div class="progress"></div>
</div>
<div >
<a href="https://github.com/Amadeo-Frontend/DIO-Memory_Game" target="_blank">
<img id="github-icon" src="./src/images/github.svg" alt="github icon" />
</a>
</div>
<script src="./src/scripts/engine.js" defer></script>
</body>
</html>