Spaces:
Running
Running
File size: 281 Bytes
92f3c10 6e537e6 92f3c10 b0fff51 77bf12f 6e537e6 92f3c10 |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gr
css = (
"footer {display: none !important;} .gradio-container {min-height: 0px !important;}"
)
with gr.Blocks(css=css) as demo:
gr.Markdown(value="This _example_ was **written** in [Markdown](https://en.wikipedia.org/wiki/Markdown)\n")
demo.launch()
|