project1 / contact.py
ashutoshsharma58's picture
Create contact.py
61f4ff4
raw
history blame contribute delete
451 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('[GITHUB](https://github.com/ashutoshsharma58)')
st.write('or')
st.write('[LINKEDIN](https://www.linkedin.com/in/ashutosh-sharma-0aa273101/)')
if __name__ == '__main__':
run()