I want to insert several online images into my HTML file. If I click the URL inserted, I can see images. However, when the URL is in src, no image would appear.
I tried to use local images, however, I used a flask template, the local file wouldn't display either (the relative path is correct since if I use the path in a simple HTML file without the template, everything is just fine).
<div class="container">
<div class="starter-template">
{% if map == 'Erangel' %}
{% if item == 'Beryl M762' %}
<img src="" alt="Sanhok">
{% endif %}
{% endif %}
</div>
</div>
How can I insert my images successfully?