import gradio as gr def display_html(): html_content = """

Hello!

This Space is currently down....please switch to the Spaces I'm about to launch....Thanks for your support!

""" return html_content with gr.Interface(fn=display_html, inputs=[], outputs=gr.HTML()): gr.Interface.launch()