django html css code example
Example 1: css django
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}">
Example 2: how to load css into a django webpage
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="keywords" content="">
<meta name="author" content="Elijah Sears">
<title>Css Tutorial!</title>
<link rel="stylesheet" href="{% static "./css/master.css" %}">
</head>
<body>
</body>
</html>