gvartanian2010 commited on
Commit
536e36b
·
verified ·
1 Parent(s): 859d9c0

adding the embedded spotify playlist

Browse files
Files changed (1) hide show
  1. app.py +15 -0
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()