Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
with gr.Blocks() as demo:
|
| 4 |
gr.Markdown(
|
| 5 |
value="""
|
| 6 |
### Python code
|
|
@@ -8,6 +8,8 @@ with gr.Blocks() as demo:
|
|
| 8 |
def hello_world():
|
| 9 |
print("Hello, world!")
|
| 10 |
```
|
|
|
|
|
|
|
| 11 |
""")
|
| 12 |
|
| 13 |
demo.launch()
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
+
with gr.Blocks(css="a { color: pink !important}") as demo:
|
| 4 |
gr.Markdown(
|
| 5 |
value="""
|
| 6 |
### Python code
|
|
|
|
| 8 |
def hello_world():
|
| 9 |
print("Hello, world!")
|
| 10 |
```
|
| 11 |
+
|
| 12 |
+
A link to the gradio docs is [here](https://gradio.app)
|
| 13 |
""")
|
| 14 |
|
| 15 |
demo.launch()
|