analytics-jiten commited on
Commit
0565c21
·
1 Parent(s): e25eb00

Create contact.py

Browse files
Files changed (1) hide show
  1. contact.py +17 -0
contact.py ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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('[GITHUB](https://github.com/abisugiri)')
12
+ st.write('or')
13
+ st.write('[LINKEDIN](https://www.linkedin.com/in/abi-sugiri/)')
14
+
15
+
16
+ if __name__ == '__main__':
17
+ run()