Update pages/introds.py
Browse files- pages/introds.py +4 -3
pages/introds.py
CHANGED
@@ -2,7 +2,6 @@ import streamlit as st
|
|
2 |
|
3 |
# Background options
|
4 |
bg_options = [
|
5 |
-
|
6 |
"https://cdn.pixabay.com/photo/2023/11/23/17/47/sunset-7704533_1280.jpg"
|
7 |
]
|
8 |
|
@@ -50,7 +49,9 @@ custom_css = f"""
|
|
50 |
"""
|
51 |
|
52 |
# Inject CSS into Streamlit app
|
53 |
-
st.markdown(custom_css, unsafe_allow_html=True)
|
|
|
|
|
54 |
st.markdown("<h1>Welcome to Data Science Introduction</h1>", unsafe_allow_html=True)
|
55 |
|
56 |
# Main content
|
@@ -84,4 +85,4 @@ st.markdown(
|
|
84 |
</div>
|
85 |
""",
|
86 |
unsafe_allow_html=True
|
87 |
-
)
|
|
|
2 |
|
3 |
# Background options
|
4 |
bg_options = [
|
|
|
5 |
"https://cdn.pixabay.com/photo/2023/11/23/17/47/sunset-7704533_1280.jpg"
|
6 |
]
|
7 |
|
|
|
49 |
"""
|
50 |
|
51 |
# Inject CSS into Streamlit app
|
52 |
+
st.markdown(custom_css, unsafe_allow_html=True)
|
53 |
+
|
54 |
+
# Header section
|
55 |
st.markdown("<h1>Welcome to Data Science Introduction</h1>", unsafe_allow_html=True)
|
56 |
|
57 |
# Main content
|
|
|
85 |
</div>
|
86 |
""",
|
87 |
unsafe_allow_html=True
|
88 |
+
)
|