include css files in django code example
Example: 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>