Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2.     <head>
  3.         <meta charset="utf-8">
  4.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5.         <title>index</title>
  6.         <meta name="description" content="">
  7.         <meta name="viewport" content="width=device-width, initial-scale=1">
  8.         <link rel="stylesheet" href="css.css">
  9.         <link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet">
  10.     </head>
  11.     <body>
  12.         <header>
  13.             <img class="logo" src="img/logo.png" alt="logo">
  14.             <nav>
  15.                 <ul class="navi">
  16.                     <li><a href="index.html">ACCUEIL</a></li>
  17.                     <li><a href="cuisine.html">NOTRE CUISINE</a></li>
  18.                     <li><a href="carte.html">LA CARTE</a></li>
  19.                     <li><a href="vin.html">LE VIN</a></li>
  20.                     <li><a href="book.html">LIVRE D'OR</a></li>
  21.                     <li><a href="realisation.html">NOS RÉALISATION</a></li>
  22.                     <li><a href="event.html">EVÈNEMENTS</a></li>
  23.                 </ul>
  24.             </nav>
  25.             <a class="msg" href="#">CONTACT</a>
  26.             </div>
  27.         </div>
  28. <div class="container main-container">
  29.  
  30.     <div id="carousel-example-generic" class="carousel slide" data-interval="7000">
  31.         <!-- Indicators -->
  32.         <ol class="carousel-indicators">
  33.             <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
  34.             <li data-target="#carousel-example-generic" data-slide-to="1"></li>
  35.             <li data-target="#carousel-example-generic" data-slide-to="2"></li>
  36.         </ol>
  37.  
  38.         <!-- Wrapper for slides -->
  39.         <div class="carousel-inner" role="listbox">
  40.        
  41.             <!-- First slide -->
  42.             <div class="item active deepskyblue">
  43.                
  44.                 <div class="carousel-caption">
  45.                     <h3 data-animation="animated bounceInLeft">
  46.                         This is the caption for slide 1
  47.                     </h3>
  48.                     <h3 data-animation="animated bounceInRight">
  49.                         This is the caption for slide 1
  50.                     </h3>
  51.                     <button class="btn btn-primary btn-lg" data-animation="animated zoomInUp">Button</button>
  52.                 </div>
  53.             </div> <!-- /.item -->
  54.            
  55.             <!-- Second slide -->
  56.             <div class="item skyblue">
  57.                 <div class="carousel-caption">
  58.                     <h3 class="icon-container" data-animation="animated bounceInDown">
  59.                         <span class="glyphicon glyphicon-heart"></span>
  60.                     </h3>
  61.                     <h3 data-animation="animated bounceInUp">
  62.                         This is the caption for slide 2
  63.                     </h3>
  64.                     <button class="btn btn-primary btn-lg" data-animation="animated zoomInRight">Button</button>
  65.                 </div>
  66.             </div><!-- /.item -->
  67.            
  68.             <!-- Third slide -->
  69.             <div class="item darkerskyblue">
  70.                 <div class="carousel-caption">
  71.                     <h3 class="icon-container" data-animation="animated zoomInLeft">
  72.                         <span class="glyphicon glyphicon-glass"></span>
  73.                     </h3>
  74.                     <h3 data-animation="animated flipInX">
  75.                         This is the caption for slide 3
  76.                     </h3>
  77.                     <button class="btn btn-primary btn-lg" data-animation="animated lightSpeedIn">Button</button>
  78.                 </div>
  79.             </div><!-- /.item -->
  80.        
  81.         </div><!-- /.carousel-inner -->
  82.  
  83.         <!-- Controls -->
  84.         <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
  85.             <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
  86.             <span class="sr-only">Previous</span>
  87.         </a>
  88.         <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
  89.             <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
  90.             <span class="sr-only">Next</span>
  91.         </a>
  92.     </div><!-- /.carousel -->
  93.  
  94. </div><!-- /.container -->
  95.  
  96.     </body>
  97. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement