so when i add owl-carousel class to my div which contains the items they disappear idk why!!
this is how i added owl-carousel style sheet and scripts in head tag :
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.carousel.min.css">
<link rel="stylesheet" href="./css/main.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.carousel.min.js"></script>
and i added script src="app.js" before closing body tag
here is the items im trying to make a slider :
HTML
<section class="portSection">
<div class="wrapper">
<div class="carousel owl-carousel">
<div class="owl-item"><img src="./img/portfolio (1).png" alt=""></div>
<div class="owl-item"><img src="./img/portfolio (2).png" alt=""></div>
<div class="owl-item"><img src="./img/portfolio (3).png" alt=""></div>
<div class="owl-item"><img src="./img/portfolio (4).png" alt=""></div>
</div>
</div>
</section>