import gradio as gr html = """ <!DOCTYPE html> <html> <head> <title>ControlLLM</title> <style> iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; } </style> </head> <body> <div style="text-align:center"> <h1><strong><font style=color:rgba(2200,10,10,1)>This space is currently under maintenance due to network issues ππ</font></strong></h1></div> <div style="text-align:center"><h2>We warmly welcome you to visit our <a href="https://github.com/OpenGVLab/ControlLLM" target="_blank">GitHub</a> if youβre interested ππ</br></h2></div> </body> </html> """ with gr.Blocks() as demo: name = gr.HTML(html) demo.launch()