I'm facing a challenge with my jumbotron that has a background image. I want to make the image clickable so that it redirects to another page when clicked.
I attempted to add an image tag with a src attribute, but it ended up overlaying another image on top of the background image I already had.
.jumbotron-fall{
margin-top: 20px;
background-image: url("/Users/admin/Documents/Nas/EAN x Twin Cousin tm.jpg");
background-size: 700px 400px;
background-position: center;
}
<div class="jumbotron jumbotron-fluid jumbotron-fall text-center row no-gutters">
<div class="container">
<a href="fall2018.html">
</a>
</div>
</div>