Altered my project file.
Browse files
app.py
CHANGED
@@ -41,12 +41,23 @@ st.markdown(
|
|
41 |
"""
|
42 |
<div class="row">
|
43 |
<div class="column">
|
44 |
-
<img src="https://user-images.githubusercontent.com/115732734/271723332-6c824e95-5e2f-48ec-af1c-b66ac7db1d7a.jpeg" style="width:550">
|
45 |
-
|
46 |
<div class="column">
|
47 |
-
<img src="https://user-images.githubusercontent.com/115732734/271723345-50f27ca9-94ee-4e7c-ad3b-2b10f27d31bb.jpeg" style="width:550">
|
48 |
-
|
49 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
""",
|
51 |
unsafe_allow_html=True
|
52 |
)
|
|
|
41 |
"""
|
42 |
<div class="row">
|
43 |
<div class="column">
|
44 |
+
<img src="https://user-images.githubusercontent.com/115732734/271723332-6c824e95-5e2f-48ec-af1c-b66ac7db1d7a.jpeg" style="width:550"></div>
|
45 |
+
|
46 |
<div class="column">
|
47 |
+
<img src="https://user-images.githubusercontent.com/115732734/271723345-50f27ca9-94ee-4e7c-ad3b-2b10f27d31bb.jpeg" style="width:550"></div>
|
48 |
+
|
49 |
</div>
|
50 |
+
|
51 |
+
<style>
|
52 |
+
.row {
|
53 |
+
display: flex;
|
54 |
+
}
|
55 |
+
|
56 |
+
.column {
|
57 |
+
flex: 33.33%;
|
58 |
+
padding: 5px;
|
59 |
+
}
|
60 |
+
</style>
|
61 |
""",
|
62 |
unsafe_allow_html=True
|
63 |
)
|