index.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title></title>
  5. <link href="css/bootstrap.css" rel="stylesheet"> <!-- pulls in the main bootstrap content we need -->
  6. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  7. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  8. <!--[if lt IE 9]>
  9. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  10. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  11. <![endif]-->
  12. </head>
  13. <body>
  14. <nav class="navbar navbar-default">
  15. <div class="container-fluid">
  16. <ul class="nav navbar-nav">
  17. <li class="active"><a href="#">Home</a></li>
  18. <li><a href="#">My photos</a></li>
  19. </ul>
  20. </div>
  21. </nav>
  22. <div class="container">
  23. <h1>Hello from my Bootstrap site</h1>
  24. </div>
  25. <script src="js/jquery.min.js"></script> <!-- jquery libraries -->
  26. <script src="js/bootstrap.min.js"></script> <!-- bootsrap libraries -->
  27. </body>
  28. </html>