-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.27 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
<!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>Document</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="game-container">
<canvas id="brickcanvas" height="600" width="800"></canvas>
<img
src="./images/heart 1 (1).png"
alt="Lives"
id="heart"
class="extra"
/>
<img src="./images/arrow-up 1.png" alt="L" id="levels" class="extra" />
<img src="./images/trophy 1 (1).png" alt="W" id="trophy" class="extra" />
<div class="icons">
<button>
<img src="./images/unmute.png" alt="unmute" id="unmute" />
<img src="./images/mute.png" alt="mute" id="mute" />
</button>
</div>
</div>
<div id="snackbar"></div>
<!-- <img src="./images/_Group1.png" alt="------" id="board" /> -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.2.1/howler.min.js"
integrity="sha512-L6Z/YtIPQ7eU3BProP34WGU5yIRk7tNHk7vaC2dB1Vy1atz6wl9mCkTPPZ2Rn1qPr+vY2mZ9odZLdGYuaBk7dQ=="
crossorigin="anonymous"
></script>
<script src="script.js"></script>
</body>
</html>