Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. <div id="carousel-example-generic" class="carousel slide carousel-fade" data-ride="carousel">
  2. <!-- Indicators -->
  3. <ol class="carousel-indicators">
  4. <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
  5. <li data-target="#carousel-example-generic" data-slide-to="1"></li>
  6. <li data-target="#carousel-example-generic" data-slide-to="2"></li>
  7. </ol>
  8.  
  9. <!-- Wrapper for slides -->
  10. <div class="carousel-inner" role="listbox">
  11. <div class="item active">
  12. <img src="./img/family-new.jpg" alt="We are Serious about Clean!">
  13. <div class="carousel-caption">
  14. <h3>Safe for the whole family!</h3>
  15. </div>
  16. </div>
  17. <div class="item">
  18. <img src="./img/RugCleaningFacility.jpg" alt="Rug Cleaning">
  19. <div class="carousel-caption">
  20. <h3>State of the art rug cleaning facility!</h3>
  21. </div>
  22. </div>
  23. <div class="item">
  24. <img src="./img/ProfessionalWW.jpg" alt="Window Washing and Pressure Washing">
  25. <div class="carousel-caption">
  26. <h3>Professional Window Washing and Pressure Washing!</h3>
  27. </div>
  28. </div>
  29. <div class="item">
  30. <img src="./img/UpholsteryClean.jpg" alt="Upholstery Cleaning">
  31. <div class="carousel-caption">
  32. <h3>The deepest upholstery cleaning available!</h3>
  33. </div>
  34. </div>
  35. </div>
  36.  
  37. <!-- Controls -->
  38. <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
  39. <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
  40. <span class="sr-only">Previous</span>
  41. </a>
  42. <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
  43. <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
  44. <span class="sr-only">Next</span>
  45. </a>
  46. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement