Advertisement
Guest User

Untitled

a guest
Jul 1st, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. <!-- Carousel -->
  2. <header id="myCarousel" class="carousel slide carousel-fade" data-ride="carousel">
  3. <!-- Indicators -->
  4. <ol class="carousel-indicators">
  5. <li data-target="#myCarousel" data-slide-to="0" class="active"></li>
  6. <li data-target="#myCarousel" data-slide-to="1"></li>
  7. <li data-target="#myCarousel" data-slide-to="2"></li>
  8. </ol>
  9.  
  10. <!-- Wrapper for Slides -->
  11. <div class="carousel-inner" role="listbox">
  12. <div class="item active">
  13. <!-- Set the first background image using inline CSS below. -->
  14. <img src="img/golden_egg3.jpg" class="img-responsive first-slide" alt="First slide">
  15. <div class="container">
  16. <div class="carousel-caption">
  17. <div class="caption-one">
  18. <h1>The right Wealth Advisor can make a big difference.</h1>
  19. <br>
  20. <a href="contact.html" class="btn btn-primary btn-lg hvr-underline-from-left" role="button">Learn More</a>
  21. </div>
  22. </div>
  23. </div>
  24. </div>
  25.  
  26. <div class="item">
  27. <!-- Set the first background image using inline CSS below. -->
  28. <img src="img/graph_in_hand3.jpg" class="img-responsive second-slide" alt="Second slide">
  29. <div class="container">
  30. <div class="carousel-caption">
  31. <div class="caption-two">
  32. <h1>Personal Wealth Planning is not<br> just charts and graphs, it's about<br> taking control of your financial future.</h1>
  33. <a class="btn btn-lg btn-primary hvr-underline-from-left" href="contact.html" role="button">Learn More</a>
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38.  
  39. <div class="item">
  40. <!-- Set the first background image using inline CSS below. -->
  41. <img src="img/jar_with_coins3.jpg" class="img-responsive third-slide" alt="Third slide">
  42. <div class="container">
  43. <div class="carousel-caption">
  44. <div class="caption-three">
  45. <h1>Successful investing takes<br> time, discipline and patience.</h1>
  46. <a class="btn btn-lg btn-primary hvr-underline-from-left" href="contact.html" role="button">Learn More</a>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. <a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
  53. <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
  54. <span class="sr-only">Previous</span>
  55. </a>
  56. <a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
  57. <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
  58. <span class="sr-only">Next</span>
  59. </a>
  60. </header>
  61.  
  62. .caption-one {
  63. background-color: #282828;
  64. opacity: 0.75;
  65. padding-left: 2%;
  66. margin-right: 38%;
  67. padding-bottom: 2%;
  68. width: 40%;
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement