Added My Project File
Browse files
app.py
CHANGED
@@ -47,11 +47,37 @@ 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:
|
51 |
-
<img src="https://user-images.githubusercontent.com/115732734/271723345-50f27ca9-94ee-4e7c-ad3b-2b10f27d31bb.jpeg" style="width:
|
|
|
|
|
|
|
52 |
<img src="https://user-images.githubusercontent.com/115732734/271723351-3677394d-1cd3-4df8-8bec-616fa6bd3b2c.png" style="width:550">
|
|
|
53 |
</div>
|
|
|
54 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
""",
|
56 |
unsafe_allow_html=True
|
57 |
)
|
|
|
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:100%">
|
51 |
+
<img src="https://user-images.githubusercontent.com/115732734/271723345-50f27ca9-94ee-4e7c-ad3b-2b10f27d31bb.jpeg" style="width:100%">
|
52 |
+
|
53 |
+
</div>
|
54 |
+
<div class="column">
|
55 |
<img src="https://user-images.githubusercontent.com/115732734/271723351-3677394d-1cd3-4df8-8bec-616fa6bd3b2c.png" style="width:550">
|
56 |
+
<img src="https://user-images.githubusercontent.com/115732734/271723337-bc1ce6d1-8bed-4c75-86b3-fbb2d2eef919.png" style="width:550">
|
57 |
</div>
|
58 |
+
|
59 |
</div>
|
60 |
+
|
61 |
+
# Style
|
62 |
+
|
63 |
+
<style>
|
64 |
+
.row {
|
65 |
+
display: flex;
|
66 |
+
flex-wrap: wrap;
|
67 |
+
padding: 0 4px;
|
68 |
+
}
|
69 |
+
|
70 |
+
/* Create two equal columns that sits next to each other */
|
71 |
+
.column {
|
72 |
+
flex: 50%;
|
73 |
+
padding: 0 4px;
|
74 |
+
}
|
75 |
+
|
76 |
+
.column img {
|
77 |
+
margin-top: 8px;
|
78 |
+
vertical-align: middle;
|
79 |
+
}
|
80 |
+
</style>
|
81 |
""",
|
82 |
unsafe_allow_html=True
|
83 |
)
|