Spaces:
Runtime error
Runtime error
File size: 674 Bytes
fcc16aa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
import streamlit as st
footer="""<style>
a:link , a:visited{
background-color: transparent;
# text-decoration: underline;
}
a:hover, a:active {
color: orange;
background-color: transparent;
text-decoration: underline;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: white;
text-align: center;
}
</style>
<div class="footer">
<p>USER_DEFINED_TEXT <a href="LINK" target="_blank" color="blue">LINKED_TEXT</a></p>
</div>
"""
def add_footer(text, linked_text, link):
custom_footer = footer.replace('USER_DEFINED_TEXT', text).replace('LINKED_TEXT', linked_text).replace('LINK', link)
st.markdown(custom_footer, unsafe_allow_html=True) |