pikachu_therapy / app.py
minhwai's picture
Update app.py
221e808 verified
raw
history blame contribute delete
381 Bytes
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)