Altered my project file
Browse files
app.py
CHANGED
@@ -42,8 +42,9 @@ image = st.image("https://user-images.githubusercontent.com/115732734/271723332-
|
|
42 |
image = st.image("https://user-images.githubusercontent.com/115732734/271723345-50f27ca9-94ee-4e7c-ad3b-2b10f27d31bb.jpeg", width=550)
|
43 |
image = st.image("https://user-images.githubusercontent.com/115732734/271723351-3677394d-1cd3-4df8-8bec-616fa6bd3b2c.png", width=550)
|
44 |
|
45 |
-
# Add Image Tags
|
46 |
-
|
|
|
47 |
<div class="row">
|
48 |
<div class="column">
|
49 |
<img src="https://user-images.githubusercontent.com/115732734/271723332-6c824e95-5e2f-48ec-af1c-b66ac7db1d7a.jpeg" style="width:550">
|
@@ -55,6 +56,9 @@ image = st.image("https://user-images.githubusercontent.com/115732734/271723351-
|
|
55 |
<img src="https://user-images.githubusercontent.com/115732734/271723351-3677394d-1cd3-4df8-8bec-616fa6bd3b2c.png" style="width:550">
|
56 |
</div>
|
57 |
</div>
|
|
|
|
|
|
|
58 |
|
59 |
# Get user input
|
60 |
text = st.text_input("Enter some text here:")
|
|
|
42 |
image = st.image("https://user-images.githubusercontent.com/115732734/271723345-50f27ca9-94ee-4e7c-ad3b-2b10f27d31bb.jpeg", width=550)
|
43 |
image = st.image("https://user-images.githubusercontent.com/115732734/271723351-3677394d-1cd3-4df8-8bec-616fa6bd3b2c.png", width=550)
|
44 |
|
45 |
+
# Add Image Tags
|
46 |
+
st.markdown(
|
47 |
+
"""
|
48 |
<div class="row">
|
49 |
<div class="column">
|
50 |
<img src="https://user-images.githubusercontent.com/115732734/271723332-6c824e95-5e2f-48ec-af1c-b66ac7db1d7a.jpeg" style="width:550">
|
|
|
56 |
<img src="https://user-images.githubusercontent.com/115732734/271723351-3677394d-1cd3-4df8-8bec-616fa6bd3b2c.png" style="width:550">
|
57 |
</div>
|
58 |
</div>
|
59 |
+
""",
|
60 |
+
unsafe_allow_html=True
|
61 |
+
)
|
62 |
|
63 |
# Get user input
|
64 |
text = st.text_input("Enter some text here:")
|