Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
# ์ ๋ชฉ
|
4 |
+
st.title("Pikatu Therapy")
|
5 |
+
|
6 |
+
# HTML ํ์ผ 1 ํ์
|
7 |
+
st.header("Page 1")
|
8 |
+
with open("page1.html", "r", encoding="utf-8") as file:
|
9 |
+
html1 = file.read()
|
10 |
+
st.components.v1.html(html1, height=600)
|
11 |
+
|
12 |
+
# HTML ํ์ผ 2 ํ์
|
13 |
+
st.header("Page 2")
|
14 |
+
with open("page2.html", "r", encoding="utf-8") as file:
|
15 |
+
html2 = file.read()
|
16 |
+
st.components.v1.html(html2, height=600)
|
17 |
+
|