File size: 245 Bytes
32288fd
 
 
 
 
 
774d562
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(src="https://musclewiki.com/barbell/male/glutes/barbell-squat")

demo.launch()