index.html 825 B

1234567891011121314151617181920212223242526
  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. <div class="container">
  15. <h1>Hello from my Bootstrap site</h1>
  16. </div>
  17. <script src="js/jquery.min.js"></script> <!-- jquery libraries -->
  18. <script src="js/bootstrap.min.js"></script> <!-- bootsrap libraries -->
  19. </body>
  20. </html>