I wanna push the image on the HTML page by .innerHTML, which was working fine, but when I moved to the flask backend and try to do the same its threw a problem saying not found, but I put those images in static folder, how can i do it without any error
tried this but no result
document.getElementById('usersaid').innerHTML=`<img src="{{ url_for('static',filename='UI/mic.ico') }}"
/>`