ProjectCNN2 / contact.py
HimanshuA's picture
Create contact.py
01ac473 verified
raw
history blame contribute delete
328 Bytes
import streamlit as st
def run():
# Title
st.title('Contacts')
st.markdown('---')
st.write('###### For further information, you can contact the author.')
st.markdown('---')
st.write('##### Author Contact Information:')
# st.write('[LINKEDIN](https://www)')
if __name__ == '__main__':
run()