Spaces:
Sleeping
Sleeping
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"C: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") |