I have a few pages. For every page I need load unique css. For all static files I use this. In the head of index.html I have:
{% block css %} {% endblock %}
it is
You need to use {% load static %} first.
{% load static %}
Your code needs to be refined.
You are using double quotes, where you need to use an apostrophe.
Use
href ="{% static 'css/contact.css' %} "
Instead of
href ="{% static" css/contact.css" %} "