load image in css django code example
Example: reference images from css in django
For HTML
<link rel="stylesheet" href="{% static 'app_name/css/document.css' %}">
for CSS
background: url("../img/image_name.jpeg");
for JS
document.write('<img src="{% static "images/anotherImage.png" %}" width="680" height="210" />');