I've been completing the DjangoGirls tutorial (very good) to learn how to create a blog using Python and Django. I decided to add an image to the homepage (not covered by the tutorial) but when the code is run I get a 404 error and the image isn't shown.
My HTML code is
img src="logo3.jpg" alt="Me2 logo" style="width:50px;height:50px;"
The image is saved in the same folder as the HTML file. The site is running on Localhost.
I think this may be a similar problem to HTML: Image won't display? but I don't know if my difficulty is affected by the Django/Python setup. Very new to all this, help is appreciated. Thanks.