MyFirstSpace / utils /footer.py
ricardo-lsantos's picture
Added Footer. Changed the output to clear text instead of object printing
486ac61
raw
history blame
No virus
600 Bytes
import streamlit as st
footer="""<style>
a:link , a:visited{
color: blue;
background-color: transparent;
text-decoration: underline;
}
a:hover, a:active {
color: red;
background-color: transparent;
text-decoration: underline;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: white;
color: black;
text-align: center;
}
</style>
<div class="footer">
<p>Developed with ❤ by <a style='display: block; text-align: center;' href="https://huggingface.co/ricardo-lsantos" target="_blank">Ricardo Lisboa Santos</a></p>
</div>
"""
st.markdown(footer,unsafe_allow_html=True)