Spaces:
Sleeping
Sleeping
File size: 381 Bytes
f693b6e 221e808 f693b6e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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)
|