Spaces:
Sleeping
Sleeping
ruslanruslanruslan
commited on
Commit
•
aef8c9d
1
Parent(s):
56b5fe6
fixed
Browse files
app.py
CHANGED
@@ -2,11 +2,15 @@ import streamlit as st
|
|
2 |
|
3 |
st.title('A multipage application featuring various Natural Language Processing instruments and functions')
|
4 |
st.markdown(
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
st.title('A multipage application featuring various Natural Language Processing instruments and functions')
|
4 |
st.markdown(
|
5 |
+
"""
|
6 |
+
<style>
|
7 |
+
body {
|
8 |
+
background-image: url('aperiodic.png');
|
9 |
+
background-size: cover;
|
10 |
+
background-repeat: no-repeat;
|
11 |
+
background-attachment: fixed;
|
12 |
+
}
|
13 |
+
</style>
|
14 |
+
""",
|
15 |
+
unsafe_allow_html=True
|
16 |
+
)
|