Update app.py
Browse files
app.py
CHANGED
@@ -60,7 +60,19 @@ with col3:
|
|
60 |
st.button('3')
|
61 |
|
62 |
|
|
|
63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
#st.text("Fixed text: ")
|
66 |
|
|
|
60 |
st.button('3')
|
61 |
|
62 |
|
63 |
+
col4, col5, col6 = st.columns(3)
|
64 |
|
65 |
+
with col4:
|
66 |
+
st.header("A cat")
|
67 |
+
st.image("https://static.streamlit.io/examples/cat.jpg")
|
68 |
+
|
69 |
+
with col5:
|
70 |
+
st.header("A dog")
|
71 |
+
st.image("https://static.streamlit.io/examples/dog.jpg")
|
72 |
+
|
73 |
+
with col6:
|
74 |
+
st.header("An owl")
|
75 |
+
st.image("https://static.streamlit.io/examples/owl.jpg")
|
76 |
|
77 |
#st.text("Fixed text: ")
|
78 |
|