File size: 1,259 Bytes
92c0979
1c67e66
92c0979
1c67e66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92c0979
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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)