Здравствуйте. Подключил bootstrap, вставил изображение, но оно почему-то не отображается

<!doctype html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>{% block title %}{% endblock %}</title>
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
</head>
<body>
    <div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white.border-bottom.shadow-sm">
        <a class="fs-1 my-0 mr-md-auto font-weight-normal text-dark " href="{% url 'home' %}">
            <img src='C:\Users\user\Pictures\G\70697794.png'>
        </a>
        <nav class="my-0 my-md-2 mr-md-2 float-right">
            <a class="p-2 text-dark" href="{% url 'about' %}">Кафедра...</a>
            <a class="p-2 text-dark" href="{% url 'create' %}">Приказы</a>
        </nav>
    </div>

    <div class="container">
        {% block content %}{% endblock %}

</body>
</html>

Ответы (0 шт):