Я новичок в кодировании, и у меня возникли проблемы со ссылкой на нужную папку.
Вот моя структура папок:
Вот мой HTML-код:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>AGONEX GmbH</title>
<link rel="stylesheet" href="bootstrap-4.1.3-dist/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="/stylesheets/style.css" />
<link rel="stylesheet" type="text/css" href="/stylesheets/fixed.css" />
</head>
<body>
<nav class="navbar navbar-dark fixed-top">
<a class="navbar-brand mx-auto" href="#"
><img src="/images/agonex.png" alt=""
/></a>
</nav>
<div class="video-background">
<div class="video-wrap">
<div id="video">
<video id="bgvid" autoplay loop muted playsinline>
<source src="/images/agonex.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
<div class="caption text-center">
<h1>Lorem</h1>
<h3>Lorem</h3>
<a class="btn btn-outline-light btn-lg" href="course">Lorem</a>
</div>
<!--- Start Course Section -->
<div id="course" class="row justify-content-center">
<div class="col-md-8 text-center">
<h1>Lorem</h1>
<p class="lead">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Delectus,
rem ut quos ex quibusdam nisi!
</p>
</div>
</div>
<!--- End Course Section -->
<!--- Script Source Files -->
<script src="js/jquery-3.3.1.min.js"></script>
<script src="bootstrap-4.1.3-dist/js/bootstrap.min.js"></script>
<!--- End of Script Source Files -->
</body>
</html>
А теперь моя страница выглядит так:
Может кто-нибудь пожалуйстапомогите мне обратиться к правильной папке.
Извините за "легкий" вопрос, но я был бы признателен за вашу помощь!