Spaces:
Sleeping
Sleeping
Create contact.py
Browse files- 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()
|