Update app.py
Browse files
app.py
CHANGED
|
@@ -26,17 +26,13 @@ import streamlit as st
|
|
| 26 |
IMAGE_PATH = "Problems.png"
|
| 27 |
|
| 28 |
st.markdown(
|
| 29 |
-
|
| 30 |
<div style="display: inline-flex; align-items: center;">
|
| 31 |
-
<!--
|
| 32 |
-
<img src="{
|
| 33 |
-
|
| 34 |
-
<!-- Add some horizontal spacing with margin-left -->
|
| 35 |
-
<span style="font-size: 1.4em; margin-left: 0.5em;">
|
| 36 |
-
DubsChat
|
| 37 |
-
</span>
|
| 38 |
</div>
|
| 39 |
-
""",
|
| 40 |
unsafe_allow_html=True
|
| 41 |
)
|
| 42 |
|
|
|
|
| 26 |
IMAGE_PATH = "Problems.png"
|
| 27 |
|
| 28 |
st.markdown(
|
| 29 |
+
"""
|
| 30 |
<div style="display: inline-flex; align-items: center;">
|
| 31 |
+
<!-- The comment below won't be displayed, but is valid HTML -->
|
| 32 |
+
<img src="{0}" alt="logo" style="height: 1.4em; vertical-align: middle;"/>
|
| 33 |
+
<span style="font-size: 1.4em; margin-left: 0.5em;">DubsChat</span>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
</div>
|
| 35 |
+
""".format(IMAGE_PATH),
|
| 36 |
unsafe_allow_html=True
|
| 37 |
)
|
| 38 |
|