-
Notifications
You must be signed in to change notification settings - Fork 0
/
songs.html
60 lines (60 loc) · 2.12 KB
/
songs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/spotify.png" type="image/x-icon" />
<title>My Songs</title>
<style>
body {
margin: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: url('images/bg.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
iframe {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<br>
<iframe
style="border-radius:12px"
src="https://open.spotify.com/embed/track/5rpCUsEfBLIumvrxrahnKF?utm_source=generator"
width="80%" height="352" frameBorder="0" allowfullscreen=""
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy">
</iframe>
<br>
<br>
<iframe
style="border-radius:12px"
src="https://open.spotify.com/embed/track/3yBbbbZNbo4ymn99Y2zoCj?utm_source=generator"
width="80%" height="352" frameBorder="0" allowfullscreen=""
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy">
</iframe>
<br>
<br>
<iframe
style="border-radius:12px"
src="https://open.spotify.com/embed/track/2dE9RfYQSBY2uKXaSv7y0f?utm_source=generator"
width="80%" height="352" frameBorder="0" allowfullscreen=""
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy">
</iframe>
<br>
<br>
<iframe
style="border-radius:12px"
src="https://open.spotify.com/embed/track/0S8hbC2ki67o9X9NSK8v2I?utm_source=generator"
width="80%" height="352" frameBorder="0" allowfullscreen=""
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy">
</iframe>
<br>
</body>
</html>