static image in django code example

Example 1: static css in django

{% load static %}
{% load i18n %}
{% load widget_tweaks %}

<!DOCTYPE html>
<html>
<head>
    <style>
        {% include "path/to/custom_styles_1.css" %}
    </style>
    <link rel="stylesheet" href="{% static 'css/custom_styles_2.css' %}">
</head>
<body>
<!-- Your HTML body -->
</body>
</html>

Example 2: add static file in django

STATICFILES_DIRS = [
    BASE_DIR / "static",
    '/var/www/static/',
]

Example 3: django static files / templates

STATICFILES_DIRS = [
    os.path.join(BASE_DIR, "static"),
    '/var/www/static/',
]

Example 4: staticfiles

STATICFILES_DIRS = [BASE_DIR / 'static']

Example 5: static file link in django

STATIC_URL = '/static/'

Tags:

Html Example