Spaces:
Sleeping
Sleeping
adding the embedded spotify playlist
Browse files
app.py
CHANGED
|
@@ -103,4 +103,19 @@ with gr.Blocks(css=custom_css) as demo:
|
|
| 103 |
]
|
| 104 |
)
|
| 105 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
demo.launch()
|
|
|
|
| 103 |
]
|
| 104 |
)
|
| 105 |
|
| 106 |
+
gr.Markdown("## 🎧 Study Playlist")
|
| 107 |
+
|
| 108 |
+
gr.HTML("""
|
| 109 |
+
<iframe
|
| 110 |
+
style="border-radius:12px"
|
| 111 |
+
src="https://open.spotify.com/embed/playlist/3WLDIcG4Cx2UOPy0rbFhQn"
|
| 112 |
+
width="100%"
|
| 113 |
+
height="352"
|
| 114 |
+
frameBorder="0"
|
| 115 |
+
allowfullscreen=""
|
| 116 |
+
allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture"
|
| 117 |
+
loading="lazy">
|
| 118 |
+
</iframe>
|
| 119 |
+
""")
|
| 120 |
+
|
| 121 |
demo.launch()
|