How to set an image it the footer level using HTML

HI,
I have this code :

FOOTER_LOGO = "../images/blogo.png"
footer = """<style>
.footer {  
    background-color: #F6F7FA;
    position: fixed;
    left: 0;
    line-height: 140%;
}
</style><div class='footer'><p>©Copyright </p><img src="""+FOOTER_LOGO+""" alt="Italian Trulli"></div>"""
st.markdown(footer, unsafe_allow_html=True)

what I’m trying to do is to be able to read the image in the HTML img tag, I tried this…but it doesnt work.
Could help please ?