GeorgiosIoannouCoder commited on
Commit
8d456cc
1 Parent(s): abbb99f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -138,14 +138,16 @@ def main():
138
 
139
  # Subtitle.
140
 
141
- title = f"""<h2 align="center" style="font-family: monospace; font-size: 2.3rem; margin-top: -2rem">
142
  CUNY Tech Prep Tutorial 1</h2>"""
143
  st.markdown(title, unsafe_allow_html=True)
144
 
145
  # Image.
146
 
147
  image = "./ctp.png"
148
- st.image(image)
 
 
149
 
150
  # Define the personalities for the dropdown menu.
151
 
 
138
 
139
  # Subtitle.
140
 
141
+ title = f"""<h2 align="center" style="font-family: monospace; font-size: 1.5rem; margin-top: -2rem">
142
  CUNY Tech Prep Tutorial 1</h2>"""
143
  st.markdown(title, unsafe_allow_html=True)
144
 
145
  # Image.
146
 
147
  image = "./ctp.png"
148
+ left_co, cent_co, last_co = st.columns(3)
149
+ with cent_co:
150
+ st.image(image=image)
151
 
152
  # Define the personalities for the dropdown menu.
153