Advertisement
amoussa11

Two Basic Bootstrap Pages

Feb 19th, 2019
3,411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
BOO 0.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <title>Bootstrap Example</title>
  5.   <meta charset="utf-8">
  6.   <meta name="viewport" content="width=device-width, initial-scale=1">
  7.   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
  8.   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  9.   <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
  10. </head>
  11. <body>
  12.  
  13. <div class="container">
  14.   <h1>My First Bootstrap Page</h1>
  15.   <p>This part is inside a .container class.</p>
  16.   <p>The .container class provides a responsive fixed width container.</p>          
  17. </div>
  18.  
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement