-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·44 lines (39 loc) · 1.3 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
<!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">
<title>RPG game</title>
<link rel="stylesheet" href="style.css">
<style>
.pixelify-sans-<uniquifier> {
font-family: "Pixelify Sans", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
}
</style>
</head>
<body>
<p class="paragraphOfWitch">
Hello, [Gamer]
<img src="/assets/button/next/nextButton.png" alt="/assets/button/next/nextButton.png">
</p>
<p class="paragraphOfWitch2">
You have to kill at least 10 Ghast to go to the next round
</p>
<div class="coinsOfPlayer">
: 0
</div>
<div class="box"></div>
<svg class="corner" viewBox="0 0 65 62" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M35 3.5L65 6.5V62L0 0L35 3.5Z" fill="white"/>
</svg>
<canvas>
</canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.2.4/howler.min.js" integrity="sha512-xi/RZRIF/S0hJ+yJJYuZ5yk6/8pCiRlEXZzoguSMl+vk2i3m6UjUO/WcZ11blRL/O+rnj94JRGwt/CHbc9+6EA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="/Classes/classesAndVars.js"></script>
<script src="main.js"></script>
</body>
</html>