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)