Check out example codes for "how to load css into a django webpage". It will help you in understanding the concepts better.
Code Example 1
{% 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>
Learn ReactJs, React Native from akashmittal.com