WEEK 3 Asymptotic Notation-1
WEEK 3 Asymptotic Notation-1
Introduction to Bootstrap
What is Bootstrap?
Key Features:
Setting Up Bootstrap
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/
bootstrap.min.css" rel="stylesheet">
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.b
undle.min.js"></script>
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-
alpha3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<div class="container">
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-
alpha3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>
<!DOCTYPE html>
<head>
Links the Bootstrap CSS file from a CDN (Content Delivery Network)
to style the webpage.
Body Section
<div class="container">
p: Adds a paragraph.
text-secondary: Styles the text in a gray color.