Advertisement
Guest User

janak and ass-sis

a guest
Dec 11th, 2019
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.77 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>My website</title>
  5.     <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
  6.     <link rel="stylesheet" type="text/css" href="css/style.css">
  7. </head>
  8. <body>
  9. <div class="row topbar">
  10. </div>
  11.  
  12. <div class="row logosection">
  13.     <div class="container">
  14.     <img src="img/logo.png">
  15. </div>
  16. </div>
  17.  
  18. <nav class="navbar navbar-default menubar">
  19.   <div class="container-fluid">
  20.     <!-- Brand and toggle get grouped for better mobile display -->
  21.     <div class="navbar-header">
  22.       <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
  23.         <span class="sr-only">Toggle navigation</span>
  24.         <span class="icon-bar"></span>
  25.         <span class="icon-bar"></span>
  26.         <span class="icon-bar"></span>
  27.       </button>
  28.  
  29.     </div>
  30.  
  31.     <!-- Collect the nav links, forms, and other content for toggling -->
  32.     <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
  33.      
  34.       <ul class="nav navbar-nav navbar-right">
  35.         <li><a href="#">Link</a></li>
  36.        
  37.       </ul>
  38.     </div><!-- /.navbar-collapse -->
  39.   </div><!-- /.container-fluid -->
  40. </nav>
  41.  
  42. <!--Caraousel Code From here-->
  43. <div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
  44.   <!-- Indicators -->
  45.   <ol class="carousel-indicators">
  46.     <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
  47.     <li data-target="#carousel-example-generic" data-slide-to="1"></li>
  48.     <li data-target="#carousel-example-generic" data-slide-to="2"></li>
  49.   </ol>
  50.  
  51.   <!-- Wrapper for slides -->
  52.   <div class="carousel-inner" role="listbox">
  53.     <div class="item active">
  54.       <img src="img/Screenshot (17).png" alt="first">
  55.       <div class="carousel-caption">
  56.         ...
  57.       </div>
  58.     </div>
  59.     <div class="item">
  60.       <img src="img/Screenshot (18).png" alt="second">
  61.       <div class="carousel-caption">
  62.         ...
  63.       </div>
  64.     </div>
  65.     <div class="item">
  66.       <img src="img/Screenshot (20).png" alt="second">
  67.       <div class="carousel-caption">
  68.         ...
  69.       </div>
  70.     </div>
  71.     ...
  72.   </div>
  73.  
  74.  
  75.   <!-- Controls -->
  76.   <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
  77.     <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
  78.     <span class="sr-only">Previous</span>
  79.   </a>
  80.   <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
  81.     <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
  82.     <span class="sr-only">Next</span>
  83.   </a>
  84. </div>
  85.  
  86.  
  87. <script src="js/jquery.min.js"></script>
  88. <script src="js/bootstrap.min.js"></script>
  89. </body>
  90. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement