Travel_Website / app.py
Json026's picture
Create app.py
41d2f0d verified
raw
history blame contribute delete
196 Bytes
import streamlit as st
# Read HTML file
with open("index.html", "r", encoding="utf-8") as f:
html_code = f.read()
# Display HTML
st.components.v1.html(html_code, height=1000, scrolling=True)