Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.55 KB | None | 0 0
  1. <style type="text/css">
  2.         *
  3.         {
  4.             padding: 0;
  5.             margin: 0;
  6.         }
  7.  
  8.         #carouselExampleIndicators .carousel-inner
  9.  
  10.         width: 1900px;
  11.         height: 377px;
  12.  
  13.     </style>
  14.  
  15.         </head>
  16. <body>
  17.  
  18.  
  19. </div>
  20.  
  21. <div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
  22.     <ol class="carousel-indicators">
  23.         <li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
  24.         <li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
  25.         <li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
  26.     </ol>
  27.     <div class="carousel-inner">
  28.         <div class="carousel-item active">
  29.             <img class="d-block w-100" src="C:\xampp\htdocs\zero\img\img2\s1.png" alt="First slide">
  30.         </div>
  31.         <div class="carousel-item">
  32.             <img class="d-block w-100" src="..." alt="Second slide">
  33.         </div>
  34.         <div class="carousel-item">
  35.             <img class="d-block w-100" src="..." alt="Third slide">
  36.         </div>
  37.     </div>
  38.     <a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
  39.         <span class="carousel-control-prev-icon" aria-hidden="true"></span>
  40.         <span class="sr-only">Previous</span>
  41.     </a>
  42.     <a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
  43.         <span class="carousel-control-next-icon" aria-hidden="true"></span>
  44.         <span class="sr-only">Next</span>
  45.     </a>
  46. </div>
  47. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement