Game-Unknown / app.py
kirikir13's picture
Upload 16 files
2c729ba verified
raw
history blame contribute delete
252 Bytes
import streamlit as st
import streamlit.components.v1 as components
st.set_page_config(page_title="Greek City Shooter", layout="wide")
with open("index.html", "r", encoding="utf-8") as f:
html = f.read()
components.html(html, height=800)