Hi,
ich habe das Beispiel von der Bootstrap-Seite eingefügt, es wird dargestellt, aber es bewegt sich nicht, bzw. ich kann auch nicht auf den Pfeil "Bild-Weiter" klicken. Was mache ich falsch?
Lauf Konsole wird auch alles ordentlich geladen. Ich bin verwirrt.

LG und Danke
ich habe das Beispiel von der Bootstrap-Seite eingefügt, es wird dargestellt, aber es bewegt sich nicht, bzw. ich kann auch nicht auf den Pfeil "Bild-Weiter" klicken. Was mache ich falsch?
HTML:
<head>
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap.css') }}">
</head>
<body>
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="{{ url_for('static', filename='images/041.jpg') }}" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="{{ url_for('static', filename='images/042.jpg') }}" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="{{ url_for('static', filename='images/043.jpg') }}" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<script src="https://kit.fontawesome.com/xxxxxxx.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js" integrity="sha384-q2kxQ16AaE6UbzuKqyBE9/u/KzioAlnx2maXQHiDX9d4/zp8Ok3f+M7DPm+Ib6IU" crossorigin="anonymous"></script>
<script type="text/javascript" src="{{ url_for('static', filename='js/bootstrap.js') }}"></script>
</body>
Lauf Konsole wird auch alles ordentlich geladen. Ich bin verwirrt.

LG und Danke