Update app.py
Browse files
app.py
CHANGED
@@ -136,6 +136,17 @@ def main():
|
|
136 |
Turn Image to Audio Story</h1>"""
|
137 |
st.markdown(title, unsafe_allow_html=True)
|
138 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
# Define the personalities for the dropdown menu.
|
140 |
|
141 |
personalities = [
|
|
|
136 |
Turn Image to Audio Story</h1>"""
|
137 |
st.markdown(title, unsafe_allow_html=True)
|
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 |
|
152 |
personalities = [
|