File size: 248 Bytes
32288fd
 
 
 
 
 
9f8e15a
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(inputs="https://musclewiki.com/barbell/male/glutes/barbell-squat")

demo.launch()