HimanshuA commited on
Commit
01ac473
·
verified ·
1 Parent(s): 0c64926

Create contact.py

Browse files
Files changed (1) hide show
  1. contact.py +15 -0
contact.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ def run():
4
+ # Title
5
+ st.title('Contacts')
6
+ st.markdown('---')
7
+ st.write('###### For further information, you can contact the author.')
8
+ st.markdown('---')
9
+
10
+ st.write('##### Author Contact Information:')
11
+ # st.write('[LINKEDIN](https://www)')
12
+
13
+
14
+ if __name__ == '__main__':
15
+ run()