Spaces:
Sleeping
Sleeping
File size: 244 Bytes
30960a5 |
1 2 3 4 5 6 7 8 9 10 |
import streamlit as st
st.title("Candy Label Scanner")
# Embed the HTML file in the Streamlit app
with open("index.html", 'r', encoding='utf-8') as f:
html_string = f.read()
st.components.v1.html(html_string, height=800, scrolling=True)
|