I created a website (on local host for now), so I linked html with css and my css is ready. I wrote everything, but then the css doesnt show on the website
I opened the inspect element > sources > style.css
and I found the css empty, but in vs code it has 1200 lines in Chrome its 0 (I saved the folder after writing the css)
Here is the template code that I used to link with css
<!DOCTYPE html>
{% load static %}
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link href="{% static 'css/style.css' %}" rel="stylesheet">