Advertisement
Guest User

Untitled

a guest
May 20th, 2018
381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.96 KB | None | 0 0
  1. <div class="container">
  2.     <div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
  3.   <div class="carousel-inner">
  4.     <div class="carousel-item active">
  5.       <img class="d-block w-100" src="image/slide3.jpg" alt="First slide">
  6.     </div>
  7.     <div class="carousel-item">
  8.       <img class="d-block w-100" src="image/slide3.jpg" alt="Second slide">
  9.     </div>
  10.     <div class="carousel-item">
  11.       <img class="d-block w-100" src="image/slide3.jpg" alt="Third slide">
  12.     </div>
  13.   </div>
  14.   <a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
  15.     <span class="carousel-control-prev-icon" aria-hidden="true"></span>
  16.     <span class="sr-only">Previous</span>
  17.   </a>
  18.   <a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
  19.     <span class="carousel-control-next-icon" aria-hidden="true"></span>
  20.     <span class="sr-only">Next</span>
  21.   </a>
  22. </div>
  23. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement