mirror of
https://github.com/gradio-app/gradio.git
synced 2025-02-11 11:19:58 +08:00
* delete old version docs script * script and workflow * if merged * syntax * changes * add missing demos * hide state component * fix html component demo * fix model3d guide * fix workflow * fix issues with oauth and main * demo notebooks * add changeset * demo notebook * refactor into existing workflows * remove assert in networking server * add changeset * Fix type check * lint --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: freddyaboulton <alfonsoboulton@gmail.com>
6 lines
261 B
Python
6 lines
261 B
Python
import gradio as gr
|
|
|
|
with gr.Blocks() as demo:
|
|
gr.HTML(value="<p style='margin-top: 1rem, margin-bottom: 1rem'>This <em>example</em> was <strong>written</strong> in <a href='https://en.wikipedia.org/wiki/HTML' _target='blank'>HTML</a> </p>")
|
|
|
|
demo.launch() |