add css in django template code example
Example 1: css django
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}">
Example 2: add static file in django
STATICFILES_DIRS = [
BASE_DIR / "static",
'/var/www/static/',
]
Example 3: 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>
<!-- Stylesheets -->
<link rel="stylesheet" href="{% static "./css/master.css" %}">
</head>
<body>
</body>
</html>