I have a problem. When I use flask, I have to put the templates into the templates folder, but I can't get the images I use to show up on the website.
Original code:
<img src="/images/download.jpg" class="card-img-top cards" alt="...">
What I have tried:
<img src="/static/images/download.jpg" class="card-img-top cards" alt="...">
Could someone pls help me because I am stuck. Thank You in advance.