themeetjani commited on
Commit
5da99b5
1 Parent(s): 0403528

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -10
app.py CHANGED
@@ -12,15 +12,31 @@ st.sidebar.success("Select a demo above.")
12
  st.markdown("<h2 style='text-align: center; color: black;'>This is the demo for the usecases we've worked on.</h1>", unsafe_allow_html=True)
13
 
14
  st.markdown("<h3 style='text-align: center; color: black;'>Select a demo from the sidebar** to see some examples of what we can do!!! </h2>", unsafe_allow_html=True)
15
-
16
- st.markdown(
17
- '''
18
- <style>
19
- body {
20
- background-image: url("https://unsplash.com/photos/pen-on-paper-6EnTPvPPL6I");
21
- background-size: cover;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  }
23
  </style>
24
- ''',
25
- unsafe_allow_html=True
26
- )
 
 
 
12
  st.markdown("<h2 style='text-align: center; color: black;'>This is the demo for the usecases we've worked on.</h1>", unsafe_allow_html=True)
13
 
14
  st.markdown("<h3 style='text-align: center; color: black;'>Select a demo from the sidebar** to see some examples of what we can do!!! </h2>", unsafe_allow_html=True)
15
+ footer="""<style>
16
+ a:link , a:visited{
17
+ color: blue;
18
+ background-color: transparent;
19
+ text-decoration: underline;
20
+ }
21
+
22
+ a:hover, a:active {
23
+ color: red;
24
+ background-color: transparent;
25
+ text-decoration: underline;
26
+ }
27
+
28
+ .footer {
29
+ position: fixed;
30
+ left: 0;
31
+ bottom: 0;
32
+ width: 100%;
33
+ background-color: white;
34
+ color: black;
35
+ text-align: center;
36
  }
37
  </style>
38
+ <div class="footer">
39
+ <p>Developed with ❤ by <a style='display: block; text-align: center;' href="https://www.heflin.dev/" target="_blank">Heflin Stephen Raj S</a></p>
40
+ </div>
41
+ """
42
+ st.markdown(footer,unsafe_allow_html=True)