[Django]-Style.css file location in django

4👍

No, you dont have to specify anything of the css in the urls.
Try to put into the HTML

{% load staticfiles %}

and to call a

<link rel="stylesheet" href="{% static 'css/style.css' %}" />

I do it like that and it works fine.

Leave a comment