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)