import gradio as gr def greet(name): # Inject iframe to load the page and fill 100% of the page iframe_code = ''' ''' # Return iframe as HTML return iframe_code # Allow raw HTML rendering, no inputs needed demo = gr.Interface(fn=greet, inputs=None, outputs="html") demo.launch()