-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (34 loc) · 1.04 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
<!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>game</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Wantap Gaming</h1>
<p class="score">score : 0</p>
<div class="support"><a target="_blank" href="https://saweria.co/rennwp"><p>Support Creator</p></a></div>
<div id="container" class="container">
<div id="player" class="player">
<img src="img/8.jpeg" alt="">
</div>
<div id="box" class="box"></div>
</div>
<audio id="dor">
<source src="bgm/dor.m4a" type="audio/aac">
</audio>
<audio id="death">
<source src="bgm/death.m4a" type="audio/aac">
</audio>
<audio id="audio">
<source src="bgm/bgm.mp3" type="audio/mpeg">
</audio>
<audio id="deadplayer">
<source src="bgm/deadplayer.m4a" type="audio/aac">
</audio>
<script src="script.js"></script>
</body>
</html>