import streamlit as st def main(): st.set_page_config(page_title="Reads your html",page_icon=":books:") st.header("Get your best Element") st.text_input("Pass your Element with its information") with st.sidebar: st.subheader("your html") st.file_uploader("upload your html file and click process") st.button("process") if __name__ == '__main__': main()