haraberget's picture
Update app.py
dc3ae0c verified
raw
history blame
494 Bytes
import gradio as gr
# Function to return the HTML iframe
def show_website():
html_code = """
<iframe src="https://suno.com/embed/c0cdb3ad-f49d-4125-8e16-4d7dd7924a02" width="760" height="240">
<a href="https://suno.com/song/c0cdb3ad-f49d-4125-8e16-4d7dd7924a02" target="_blank">Listen on Suno</a>
</iframe>
"""
return html_code
# Create Gradio interface
with gr.Blocks() as demo:
gr.HTML("<h2>Website Viewer</h2>")
website_viewer = gr.HTML(show_website)
demo.launch()