Spaces:
Build error
Build error
Commit ·
61f4ff4
1
Parent(s): b724048
Create contact.py
Browse files- 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/ashutoshsharma58)')
|
| 12 |
+
st.write('or')
|
| 13 |
+
st.write('[LINKEDIN](https://www.linkedin.com/in/ashutosh-sharma-0aa273101/)')
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
if __name__ == '__main__':
|
| 17 |
+
run()
|