Before delving into the template below, ensure you are familiar with HTML and Bootstrap. A brief overview of HTML can be found here [https://rynerworld.com/what-is-html/], and for Bootstrap, here’s the overview and main link [https://getbootstrap.com/].
Here is a code snippet or template that utilizes HTML and Bootstrap. Please note that in this example, we utilized the CDN version of the assets instead of importing them locally. For faster and better performance, we recommend including your assets within your local files
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap HTML Template</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<!-- Header -->
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">Your Website</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- Main Content -->
<main class="container">
<div class="row">
<div class="col">
<h1>Welcome to Your Website</h1>
<p>This is a Bootstrap-powered website template.</p>
</div>
</div>
</main>
<!-- Footer -->
<footer class="bg-light text-center py-3">
<p>© 2024 Your Website. All rights reserved.</p>
</footer>
<!-- Bootstrap JS and jQuery (Optional) -->
<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.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>
HAPPY CODING!!!!
0 Comments