<!-- Owl Slider --> <link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/owl.carousel.css"> <link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/owl.theme.default.min.css"> code example

Example 1: owl carousel get started

<!-- Set up your HTML -->
<div class="owl-carousel">
  <div> Your Content </div>
  <div> Your Content </div>
  <div> Your Content </div>
  <div> Your Content </div>
  <div> Your Content </div>
  <div> Your Content </div>
  <div> Your Content </div>
</div>

Example 2: owl carousel get started

$(document).ready(function(){
  $(".owl-carousel").owlCarousel();
});

Tags:

Misc Example