File size: 269 Bytes
32288fd
 
 
 
 
 
797cd1c
32288fd
1
2
3
4
5
6
7
8
import gradio as gr

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