Advertisement
Guest User

Untitled

a guest
Jun 15th, 2020
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.10 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4.  
  5. <head>
  6.     <link rel = "stylesheet" href="{{ url_for('static', filename='css/bootstrap.min.css')}}">
  7.  
  8.  
  9.     <meta charset="UTF-8">
  10.     <title> xxx </title>
  11. </head>
  12. <body>
  13.  
  14. <div id="carouselExampleControls" class="carousel slide" data-ride="carousel" >
  15.   <div class="carousel-inner">
  16.     <div class="carousel-item active">
  17.       <img src="..." class="d-block w-200" alt="...">
  18.     </div>
  19.     <div class="carousel-item">
  20.       <img src="..." class="d-block w-200" alt="...">
  21.     </div>
  22.     <div class="carousel-item">
  23.       <img src="..." class="d-block w-200" alt="...">
  24.     </div>
  25.   </div>
  26.   <a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
  27.     <span class="carousel-control-prev-icon" aria-hidden="true"></span>
  28.     <span class="sr-only">Previous</span>
  29.   </a>
  30.   <a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
  31.     <span class="carousel-control-next-icon" aria-hidden="true"></span>
  32.     <span class="sr-only">Next</span>
  33.   </a>
  34. </div>
  35.  
  36.  
  37.  
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement