File size: 247 Bytes
32288fd
 
 
 
 
 
0e2b4f4
32288fd
 
1
2
3
4
5
6
7
8
9
import gradio as gr

with gr.Blocks() as demo:
    with gr.Row():
        gr.Markdown("## Optiforme Exercise Displayer")
    with gr.Row():
        exercise = gr.HTML(value="https://musclewiki.com/barbell/male/glutes/barbell-squat")

demo.launch()