import streamlit as st st.set_page_config( page_title="NLP WEB APP" ) def local_css(file_name): with open(file_name) as f: st.markdown(f"", unsafe_allow_html=True) local_css("style/style.css") st.title("CONTACT US") st.sidebar.success("Select a page above") with st.container(): st.write("-----") st.header("Get in Touch with Me !") st.write("##") contact_form="""
""" left_col , right_col = st.columns(2) with left_col: st.markdown(contact_form, unsafe_allow_html=True) with right_col: st.empty()