-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (30 loc) · 1.07 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 name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>【tetris】</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" />
<link rel="stylesheet" href="./main.css" />
</head>
<body>
<div id="root">
<h1>
<span style="color: rgb(253, 55, 119)">T</span><span style="color: rgb(167, 218, 203)">E</span><span
style="color: rgb(253, 244, 160)">T</span><span style="color: rgb(222, 62, 208)">R</span><span
style="color: rgb(212, 255, 95)">I</span><span style="color: rgb(255, 115, 0)">S</span>
</h1>
</div>
<script src="./index.js" type="module"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.1.1/howler.min.js"></script>
<script>
var sound = new Howl({
src: ['./src/A-Ha - Take On Me (Instrumental Version).mp3'],
volume: 0.7,
loop: true
});
sound.play()
</script>
</body>
</html>