-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Jukebox Starter Kit</title>
<link href="https://fonts.googleapis.com/css?family=Alfa+Slab+One" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/main.js"></script>
</head>
<body>
<div class="fullscreen-bg">
<video id="bg" loop muted autoplay class="fullscreen-bg__video">
<source id="sourceVid" src="" type="video/mp4">
</video>
</div>
<h1>Jukebox Starter Kit</h1>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<button onclick='loadSong1()'>Killers</button>
<button onclick='loadSong3()'>Corruption</button>
<button onclick='loadSong2()'>Hitman</button>
<br><br>
<audio id="player" controls="controls">
<source id="sourceMp3" src="" type="audio/mp3" />
<source id="sourceOgg" src="" type="audio/ogg" />
Your browser does not support the audio element.
</audio><br>
<button id="ee" onclick='easterEgg()'>DON'T CLICK ME</button>
</body>
</html>