Bootstrap

Create a Basic Page

Bootstrap

Learn the basic building blocks

HTML

<!DOCTYPE html>
  <html lang="en">
  <head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Basic Bootstrap Page</title>
  <!-- Link to Bootstrap CSS -->
  <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
  </head>
  <body>
  <div class="container">
  <h1>Welcome to My Bootstrap Page</h1>
  <p>This is a simple page created using Bootstrap.</p>
  </div>

 <!-- Bootstrap JS and dependencies -->
  <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
  <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.3/dist/umd/popper.min.js"></script>
  <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
  </body>
  </html>

In the example above:

  • The title of the page is set as "Basic Bootstrap Page".
  • The Bootstrap CSS and JS files are linked to ensure the page has the Bootstrap styling and interactivity.