AlanTsai-0329's picture
Upload 2 files
1c67e66
raw
history blame
1.26 kB
import streamlit as st
from PIL import Image
st.markdown("<h1 style='text-align: center; color: black;'>【期末專題】文字礦工</h1>", unsafe_allow_html=True)
image = Image.open('pages\docs\image\人工智慧期末報告.png')
col1, col2, col3 = st.columns([0.2, 5, 0.2])
col2.image(image, use_column_width=True)
st.subheader("組員名單")
p1, p2, p3, p4 = st.columns(4)
with p1:
st.markdown("<h5 style='text-align: center; color: black;'>111AB8005 張云姵</h5>", unsafe_allow_html=True)
image = Image.open('pages\docs\image\AB05.png')
st.image(image, use_column_width=True)
with p2:
st.markdown("<h5 style='text-align: center; color: black;'>111AB8017 林維婕</h5>", unsafe_allow_html=True)
image = Image.open('pages\docs\image\AB17.png')
st.image(image, use_column_width=True)
with p3:
st.markdown("<h5 style='text-align: center; color: black;'>111AB8023 陳玉涵</h5>", unsafe_allow_html=True)
image = Image.open('pages\docs\image\AB23.png')
st.image(image, use_column_width=True)
with p4:
st.markdown("<h5 style='text-align: center; color: black;'>111AB8026 蔡尚宏</h5>", unsafe_allow_html=True)
image = Image.open('pages\docs\image\AB26.png')
st.image(image, use_column_width=True)