Advertisement
ooter

Carousel

May 24th, 2018
547
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.47 KB | None | 0 0
  1. <div class="col-sm-6 p-2 card card-secondary border-0 mx-auto">
  2.   <div class="card card-block border-0 text-center rounded-0">
  3.     <span class="text-muted">
  4.         <div class="row mx-0">
  5.           <div id="carouselExampleControls" class="carousel slide w-100" data-ride="carousel">
  6.   <div class="carousel-inner">
  7. <!-------IMG ONE--------->
  8.     <div class="carousel-item active">
  9.      <img class="d-block w-100" src="IMAGE_ONE">
  10.     </div>
  11. <!-------IMG TWO--------->
  12.     <div class="carousel-item">
  13.       <img class="d-block w-100" src="IMAGE_TWO">
  14.     </div>
  15. <!-------IMG THREE--------->
  16.     <div class="carousel-item">
  17.      <img class="d-block w-100" src="IMAGE_THREE">
  18.     </div>
  19. <!---------- copy + paste for more images
  20.    <div class="carousel-item">
  21.     <img class="d-block w-100" src="IMAGE_THREE">
  22.    </div>
  23. ------------>
  24.   </div>
  25. <!-------CONTROLS--------->
  26.   <a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
  27.     <span class="carousel-control-prev-icon" aria-hidden="true"></span>
  28.     <span class="sr-only">Previous</span>
  29.   </a>
  30.   <a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
  31.     <span class="carousel-control-next-icon" aria-hidden="true"></span>
  32.     <span class="sr-only">Next</span>
  33.  </span> </a> </div></div>
  34.  
  35. <!-------BUTTON--------->
  36.   <a href="/LINK_HERE" class="btn btn-primary w-100 rounded-0 text-uppercase">Link to Gallery</a>
  37. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement