Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. <div class="container">
  2. <div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
  3. <!-- Сarousel Indicators -->
  4. <ol class="carousel-indicators">
  5. <li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
  6. <li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
  7. <li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
  8. </ol>
  9. <!-- Carousel Inner -->
  10. <div class="carousel-inner" role="listbox">
  11. <!-- Slide One -->
  12. <div class="carousel-item active">
  13. <img class="d-block w-100 mh-100" src="http://placehold.it/1100x500" alt="Third slide">
  14. <div class="carousel-caption d-none d-md-block">
  15. <h3>Third Slide</h3>
  16. <p>This is a description for the third slide.</p>
  17. </div>
  18. </div>
  19. <!-- Slide Two -->
  20. <div class="carousel-item">
  21. <img class="d-block w-100 mh-100" src="http://placehold.it/1100x500" alt="Third slide">
  22. <div class="carousel-caption d-none d-md-block">
  23. <h3>Third Slide</h3>
  24. <p>This is a description for the third slide.</p>
  25. </div>
  26. </div>
  27. <!-- Slide Three -->
  28. <div class="carousel-item">
  29. <img class="d-block w-100 mh-100" src="http://placehold.it/1100x500" alt="Third slide">
  30. <div class="carousel-caption d-none d-md-block">
  31. <h3>Third Slide</h3>
  32. <p>This is a description for the third slide.</p>
  33. </div>
  34. </div>
  35. </div>
  36. <!-- Carousel Control -->
  37. <a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
  38. <span class="carousel-control-prev-icon" aria-hidden="true"></span>
  39. <span class="sr-only">Previous</span>
  40. </a>
  41. <a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
  42. <span class="carousel-control-next-icon" aria-hidden="true"></span>
  43. <span class="sr-only">Next</span>
  44. </a>
  45. </div>
  46. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement