Duplicated from hysts-samples/base-space
7b6c7da befead4 7b6c7da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python import gradio as gr css = """ h1 { text-align: center; } """ with gr.Blocks(css=css) as demo: gr.Markdown("# title") if __name__ == "__main__": demo.queue().launch()