I'm getting a 404 error when trying to load an image through flask html by using the url_for static expression
I am trying to load an image through static but getting 404 error. Here's my code <img src="{{url_for('static', filename=images/cat.png)}}" alt="new image"> <img src="{{url_for('static' filename=photo.png)}}" alt="new photo"> all my filepaths seem to be correct but the image is still not loading.…