-
Notifications
You must be signed in to change notification settings - Fork 0
/
music.html
executable file
·48 lines (39 loc) · 1.82 KB
/
music.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
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Music</title>
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" type="image/png" href="img/favicon.png"/>
</head>
<body>
<div id=pageContent>
<!--Start of content here -->
<div class="videoWrapper">
<div id="whiteOverlay">
<img src="img/mute.svg" alt="volume" id="mute" height="60" width="60" onclick="muteButton()">
<p id="title"><b>Music</b></p>
<div id="iconLinks">
<a href="https://open.spotify.com/artist/3ziRJglq5TcfecfJFYvy9H" target="_blank" rel="noopener noreferrer">
<img src="img/spotify.svg" alt="spotify" class="musicLink" height="80" width="80">
</a>
<a href="https://itunes.apple.com/us/artist/wingsuits/1055835318" target="_blank" rel="noopener noreferrer">
<img src="img/apple.svg" alt="appleusic" class="musicLink" height="80" width="80">
</a>
<a href="https://soundcloud.com/wingsuitsofficial" target="_blank" rel="noopener noreferrer">
<img src="img/soundcloud.svg" alt="soundloud" class="musicLink" height="80" width="80">
</a>
</div>
</div>
<div id="musicVideo"></div>
</div>
<!-- End of content here -->
</div>
<script type="text/javascript" src="scripts/itemHolder.js"></script>
<script type="text/javascript" src="scripts/menu.js"></script>
<script type="text/javascript" src="scripts/videoPlayer.js"></script>
<script type="text/javascript" src="scripts/easterEgg.js"></script>
</body>
</html>