Spaces:
Sleeping
Sleeping
import streamlit as st | |
# μ λͺ© | |
st.title("Pikatu Therapy") | |
# HTML νμΌ 1 νμ | |
with open("page1.html", "r", encoding="utf-8") as file: | |
html1 = file.read() | |
st.components.v1.html(html1, height=600) | |
# # HTML νμΌ 2 νμ | |
# st.header("Page 2") | |
# with open("page2.html", "r", encoding="utf-8") as file: | |
# html2 = file.read() | |
# st.components.v1.html(html2, height=600) | |