-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.08 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
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>iFrame Api meets Spotify</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="episodes">
<button
class="episode"
data-spotify-id="https://open.spotify.com/track/0bxoiLuzBhL2B3ODrAU6cp?si=898f4f30ba854563"
>
20syl - Voices (Preview)
</button>
<button
class="episode"
data-spotify-id="https://open.spotify.com/episode/3CZMGJmeNFrBvbEG8021lM?si=dcd82e56e3404882"
>
Laid off from FAANG to Winning AI Hackathons
</button>
<button
class="episode"
data-spotify-id="https://open.spotify.com/episode/0mWRcEaymxqFOyonm2GEV2?si=2d782664ccf44885"
>
Asking with Dr.Mike About Health Tech
</button>
</div>
<div id="embed-iframe"></div>
</body>
<script
src="https://open.spotify.com/embed-podcast/iframe-api/v1"
async
></script>
<script src="script.js"></script>
</html>