File size: 367 Bytes
ff473e6
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import streamlit as st

# Set page title and layout
st.set_page_config(page_title="Concept Review", layout="wide")

# Display the page title
st.title("Concept Review")

# The URL of the YouTube video you want to embed
video_url = "https://www.youtube.com/watch?v=c4TOr1sJiCk"  # Replace with the actual URL of your video

# Embed the YouTube video
st.video(video_url)