-
Notifications
You must be signed in to change notification settings - Fork 0
/
playlist.html
executable file
·76 lines (54 loc) · 2.71 KB
/
playlist.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
<html lang="en">
<head>
<title>
DanceGifs - Salsa playlists
</title>
<link rel="icon" type="image/gif" href="./ressources/image/favicon/favicon.ico" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<style>
@font-face {
font-family: "SalsaFont";
src: url('./ressources/fonts/Salsa-Regular.ttf') format('truetype');
}
.salsafont {
font-family: "SalsaFont", sans-serif;
}
</style>
<script>
$(document).ready(function(){
$("#header").load("header.html");
});
</script>
</head>
<body class="salsafont">
<div id="header" class="mb-5"></div>
<div id="salsa_playlist" class="darktone container text-center pt-5" >
<h2> My personal playlists </h2>
</div>
<div id="salsa" class="container text-center pt-5">
<div class="darktone jumbotron text-left" style="background: none; padding-bottom: 5px;">
<h1 class="display-6">Salsa !</h1>
<p class="lead ">Here's what I listen to and dance Salsa on 🕺 (on both Spotify and Deezer platforms) 🎼 🎵 </p>
<hr class="my-4">
<p class="lead"> I strongly recommend you to listen and use <a href="https://youtu.be/FCc4D1zm6sQ" > this song </a> to begin with.</p>
</div>
</div>
<div class="card-deck pt-2">
<div class="container-fluid">
<div class="row">
<div class="card text-white mb-3 mx-5" style="background-color: #23232c;">
<div class="darktone card-body">
<h4 class="card-title text-center">Deezer</h4>
</div>
<iframe class="card-img-bottom" width="650px" height="600px" allowTransparency="true" src="https://www.deezer.com/plugins/player?format=classic&autoplay=false&playlist=true&width=700&height=600&color=007FEB&layout=dark&size=medium&type=playlist&id=6894763864&app_id=1" ></iframe>
</div>
<div class="card text-white mb-3 mx-5" style="background-color: #46362b;">
<div class="darktone card-body">
<h4 class="card-title text-center">Spotify</h4>
</div>
<iframe class="card-img-bottom" width="650px" height="600px" allowtransparency="true" src="https://open.spotify.com/embed/user/spotify/playlist/1GBNg6QeL2vzxer4Xaq8J2" ></iframe>
</div>
</div>
</div>
</div>
</body>