Update app.py
Browse files
app.py
CHANGED
|
@@ -4,7 +4,16 @@ import pandas as pd
|
|
| 4 |
import numpy as np
|
| 5 |
|
| 6 |
# Page Title with Style
|
| 7 |
-
st.title("🩸 Sepsis Prediction App")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
st.markdown("---")
|
| 9 |
|
| 10 |
# Welcome Message with Style
|
|
|
|
| 4 |
import numpy as np
|
| 5 |
|
| 6 |
# Page Title with Style
|
| 7 |
+
# st.title("🩸 Sepsis Prediction App")
|
| 8 |
+
# Page Title with Style (Centered)
|
| 9 |
+
st.markdown(
|
| 10 |
+
f"""
|
| 11 |
+
<div style="text-align: center;">
|
| 12 |
+
<h1 style="color: #800000;">🩸 Sepsis Prediction App</h1>
|
| 13 |
+
</div>
|
| 14 |
+
""",
|
| 15 |
+
unsafe_allow_html=True
|
| 16 |
+
)
|
| 17 |
st.markdown("---")
|
| 18 |
|
| 19 |
# Welcome Message with Style
|