Spaces:
Sleeping
Sleeping
File size: 539 Bytes
8a2dda4 1b2ed5f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import streamlit as st
from PIL import Image # for pictures
st.title('Contact')
st.markdown("Project Team: Introduction to the project team, including brief bios or links to their profiles.")
st.markdown("Contact Info: social media, contact form, emails")
### Pictures
photo_karim = Image.open(r"pictures\karim 1.jpg")
st.image(photo_karim, caption="horizontal Picture of Karim (default width)", width=None, use_column_width=None, clamp=False, channels="RGB",
output_format="auto", use_container_width=False)
st.header("FAQ") |