import streamlit as st from PIL import Image image = Image.open("rai_raise_main_badge_pos_102.png") st.image(image, width = 200) st.title("RAISE CORPORATE AI POLICY BENCHMARK") col1, col2 = st.columns(2,gap="small") with col1: video_file = open('Rai Nov 23 Copy 01.mp4', 'rb') video_bytes = video_file.read() st.video(video_bytes) with col2: video_file1 = open('Demo.mp4', 'rb') video_bytes1 = video_file1.read() st.video(video_bytes1) change_link_color = """ """ st.markdown(change_link_color , unsafe_allow_html=True) url1 = "https://www.responsible.ai/faq" url2 = "https://www.responsible.ai" url3 = "https://www.responsible.ai" st.write("FAQs [🔗](%s)" % url1 + "Press Release [🔗](%s)" % url2 + "Methodology [🔗](%s)" % url3)