-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyMusic.html
90 lines (82 loc) · 4.39 KB
/
MyMusic.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!doctype html>
<html>
<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>MyAux</title>
<link href="https://fonts.googleapis.com/css?family=Rock+Salt|Sedgwick+Ave+Display" rel="stylesheet">
<link href="myAux.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
<link href="css/simpleGridTemplate.css" rel="stylesheet" type="text/css">
<link href="myAux.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<header>
<div class="column">
<h3 class = "thumbnail"><a href="MyMusic.html" class="header_link_2">My Music</a></h3>
</div>
<div class="column">
<h3 class = "thumbnail"><a href="news.html" class="header_link_1">News</a></h3>
</div>
<div class="column">
<h4 class="thumbnail"><a href="index.html" class="header_link_1">My Aux</a></h4>
</div>
<div class="column">
<h3 class = "thumbnail"><a href="MusicMap.html" class="header_link_1">Map</a></h3>
</div>
<div class="column">
<h3 class = "thumbnail"><a href="myArtists.html" class="header_link_1">My Artists</a></h3>
</div>
</header>
<div class = "myMusic">
<div class = "profile">
<div class = "profileColumn">
<img src="profile%20pic.PNG" style="width: 70pt; height: 70pt;">
</div>
<div class = "profileColumn">
<h2>daCking15</h2>
</div>
</div>
<div class = "songTemplate">
<div class="templateHeader">
<div class="songTitle">Rolling in the Deep (Cover)</div>
<div class="artistCredit">Greta Van Fleet</div>
</div>
<div class = "contentColumn">
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/FpFT71J2zCI" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
</div>
</div>
<div class = "songTemplate">
<div class="templateHeader">
<div class="songTitle">C.R.E.A.M</div>
<div class="artistCredit">
Wu Tang Clan
</div>
</div>
<div class = "contentColumn">
<iframe src="https://open.spotify.com/embed/track/119c93MHjrDLJTApCVGpvx" width="100%" height="100%" frameborder="0" allowtransparency="true"></iframe>
</div>
</div>
<div class = "songTemplate">
<div class="templateHeader">
<div class="songTitle">
Going Down to Underwater
</div>
<div class=artistCredit>
Keith Ape ft. Ski Mask the Slump God
</div>
</div>
<div class = "contentColumn">
<iframe width="100%" height="100%" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/317399739&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
</div>
</div>
</div>
</div>
<script> (function() { var v = document.getElementsByClassName("youtube-player"); for (var n = 0; n < v.length; n++) { v[n].onclick = function () { var iframe = document.createElement("iframe"); iframe.setAttribute("src", "//www.youtube.com/embed/" + this.dataset.id + "?autoplay=1&autohide=2&border=0&wmode=opaque&enablejsapi=1&rel="+ this.dataset.related +"&controls="+this.dataset.control+"&showinfo=" + this.dataset.info); iframe.setAttribute("frameborder", "0"); iframe.setAttribute("id", "youtube-iframe"); iframe.setAttribute("style", "width: 100%; height: 100%; position: absolute; top: 0; left: 0;"); if (this.dataset.fullscreen == 1){ iframe.setAttribute("allowfullscreen", ""); } while (this.firstChild) { this.removeChild(this.firstChild); } this.appendChild(iframe); }; } })(); </script>
<div class="footer">
©2017 Chris King
</div>
</body>
</html>