Spaces:
Build error
Build error
Update home.py
Browse files
home.py
CHANGED
|
@@ -1,6 +1,18 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
import pandas as pd
|
| 3 |
import numpy as np
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
st.markdown("<h1 style='text-align: center; color: Balck;'>Zero to Hero ML</h1>", unsafe_allow_html=True)
|
| 5 |
st.markdown("<h2 style='color: Black;'>About the App</h2>", unsafe_allow_html=True)
|
| 6 |
st.markdown(
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
import pandas as pd
|
| 3 |
import numpy as np
|
| 4 |
+
st.markdown(
|
| 5 |
+
"""
|
| 6 |
+
<style>
|
| 7 |
+
.stApp {
|
| 8 |
+
background-image: url("https://huggingface.co/spaces/ronakreddy18/Zerotoheroinmachinelearning/resolve/main/ai-technology-brain-background-digital-transformation-concept.jpg");
|
| 9 |
+
background-size: cover;
|
| 10 |
+
background-repeat: no-repeat;
|
| 11 |
+
background-attachment: fixed;
|
| 12 |
+
}
|
| 13 |
+
</style>
|
| 14 |
+
""",
|
| 15 |
+
unsafe_allow_html=True
|
| 16 |
st.markdown("<h1 style='text-align: center; color: Balck;'>Zero to Hero ML</h1>", unsafe_allow_html=True)
|
| 17 |
st.markdown("<h2 style='color: Black;'>About the App</h2>", unsafe_allow_html=True)
|
| 18 |
st.markdown(
|