FurryStyleXL / app.py
Akimitsujiro's picture
Update app.py
357ee77 verified
raw
history blame contribute delete
385 Bytes
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()