File size: 164 Bytes
f63d47c
 
 
 
e39be7a
f63d47c
 
 
1
2
3
4
5
6
7
8
import streamlit as st

st.set_page_config(layout="wide")

with open("lunar_lander.htm", "r") as f:
    html = f.read()
    
st.components.v1.html(html, height=450)