Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -7,6 +7,17 @@ import sklearn
|
|
| 7 |
|
| 8 |
# main page
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
st.title("AUTO ML")
|
| 11 |
|
| 12 |
st.header("about the app..")
|
|
|
|
| 7 |
|
| 8 |
# main page
|
| 9 |
|
| 10 |
+
page_bg_img = '''
|
| 11 |
+
<style>
|
| 12 |
+
body {
|
| 13 |
+
background-image: url("https://www.google.com/url?sa=i&url=https%3A%2F%2Funsplash.com%2Fs%2Fphotos%2Fcolorful-background&psig=AOvVaw0QhY53kow7p6MXXlHIlpQu&ust=1739546004306000&source=images&cd=vfe&opi=89978449&ved=0CBEQjRxqFwoTCICwtYH4wIsDFQAAAAAdAAAAABAE");
|
| 14 |
+
background-size: cover;
|
| 15 |
+
}
|
| 16 |
+
</style>
|
| 17 |
+
'''
|
| 18 |
+
|
| 19 |
+
st.markdown(page_bg_img, unsafe_allow_html=True)
|
| 20 |
+
|
| 21 |
st.title("AUTO ML")
|
| 22 |
|
| 23 |
st.header("about the app..")
|