MySafeCode's picture
Update app.py
12b72d2 verified
raw
history blame contribute delete
383 Bytes
import gradio as gr
# Function to return the HTML iframe
def show_website():
html_code = """
<iframe src="https://1hit.no/audio/suno/" width="100%" height="600px" style="border:none;"></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()