hysts's picture
hysts HF staff
Update
befead4
raw
history blame contribute delete
No virus
204 Bytes
#!/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()