1{% load static %}
2{% load i18n %}
3{% load widget_tweaks %}
4
5<!DOCTYPE html>
6<html>
7<head>
8 <style>
9 {% include "path/to/custom_styles_1.css" %}
10 </style>
11 <link rel="stylesheet" href="{% static 'css/custom_styles_2.css' %}">
12</head>
13<body>
14<!-- Your HTML body -->
15</body>
16</html>