File size: 385 Bytes
4e6ca45
 
357ee77
 
 
 
 
 
 
 
4e6ca45
357ee77
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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()