I have to create a Carousel using Bootstrap. I'm still very new to it so I don't know a whole lot. I cant understand why the images are not being shown but only the text. I've been looking it up for the past few hours and still cannot understand what I'm doing wrong or missing etc. I feel like banging my head against a wall. Can anyone help or any info would be really appreciated.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 101 Template</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div id="Mycarousel" class="carousel">
<ol class="carousel-indicators">
<li class="item0" data-target="#Mycarousel" data-slide-to ="0" class="active"></li>
<li class="item1" data-target="#Mycarousel" data-slide-to ="1"></li>
<li class="item2" data-target="#Mycarousel" data-slide-to ="2"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img src="img/cars.jpg" alt="cars" class="img-responsive">
</div>
<div class="item"></div>
<img src="img/waterflower.jpg" alt="waterflower" class="img-responsive">
</div>
<div class="item"></div>
<img src="img/cutehedgehog.jpg" alt="cutehedgehog" class="img-responsive">
</div>
<a class="carousel-control" href="#Mycarousel" data-slide="prev"></a>
<span class="icon-prev"></span>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.7/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>