Spaces:
Runtime error
Runtime error
import gradio as gr | |
def display_html(): | |
html_content = """ | |
<div style="text-align: center;"> | |
<h1>Hello!</h1> | |
<p> This Space is currently down....please switch to the Spaces I'm about to launch....Thanks for your support!</p> | |
</div> | |
""" | |
return html_content | |
with gr.Interface(fn=display_html, inputs=[], outputs=gr.HTML()): | |
gr.Interface.launch() |