django3 static files tutorial code example
Example 1: css django
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}">
Example 2: https://docs.djangoproject.com/en/2.0/howto/static-files/
STATICFILES_DIRS = [
BASE_DIR / "static",
'/var/www/static/',
]