Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>My first Bootstrap Page</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <!– Bootstrap -->
  8. <link rel="stylesheet" href="css/bootstrap.min.css">
  9. <link rel="stylesheet" href="style.css">
  10. <!--[if lt IE 9]>
  11. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  12. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  13. <![endif]-->
  14. </head>
  15. <body>
  16.  
  17. <div class="container-fluid">
  18. <h1>Hello World!</h1>
  19. <div class="row">
  20. <div class="col-sm-4">.col-sm-4</div>
  21. <div class="col-sm-4">.col-sm-4</div>
  22. <div class="col-sm-4">.col-sm-4</div>
  23. </div>
  24. <div class="row">
  25. <div class="col-sm-6">.col-sm-6</div>
  26. <div class="col-sm-6">.col-sm-6</div>
  27. </div>
  28. </div>
  29.  
  30. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  31. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/
  32. jquery.min.js"></script>
  33. <!-- Include all compiled plugins (below), or include individual files as needed -->
  34. <script src="js/bootstrap.min.js"></script>
  35.  
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement