Referensi gambar dari CSS di 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" />');
bilalahmed_dev