pikachu_therapy / app.py
minhwai's picture
Create app.py
f693b6e verified
raw
history blame
391 Bytes
import streamlit as st
# 제λͺ©
st.title("Pikatu Therapy")
# HTML 파일 1 ν‘œμ‹œ
st.header("Page 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)