1<html>
2 <head>
3 {% load staticfiles %} <!-- Prepare django to load static files -->
4 </head>
5 <body>
6 <img src={% static "image.jpg" %}>
7 </body>
8</html>
1{% load static %}
2<img src="{% static 'my_app/example.jpg' %}" alt="My image">
3