-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathblog.html
More file actions
87 lines (83 loc) · 3.65 KB
/
blog.html
File metadata and controls
87 lines (83 loc) · 3.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blog - Ecommerce Website</title>
<!-- Include Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Navbar -->
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="images/logo.png" alt="Logo" class="img-fluid" width="100">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="shop.html">Shop</a></li>
<li class="nav-item"><a class="nav-link active" href="blog.html">Blog</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact Us</a></li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Blog Content -->
<section class="container my-5">
<div class="row">
<div class="col-md-12 text-center">
<h1>Blog</h1>
<p class="lead">Stay updated with the latest news and articles from our blog.</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="card mb-4">
<img src="images/blog/b1.jpg" class="card-img-top" alt="Blog Post 1">
<div class="card-body">
<h5 class="card-title">Blog Post Title 1</h5>
<p class="card-text">Short description of the blog post. This will give users a glimpse of the content.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4">
<img src="images/blog/b4.jpg" class="card-img-top" alt="Blog Post 2">
<div class="card-body">
<h5 class="card-title">Blog Post Title 2</h5>
<p class="card-text">Short description of the blog post. This will give users a glimpse of the content.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card mb-4">
<img src="images/blog/b3.jpg" class="card-img-top" alt="Blog Post 3">
<div class="card-body">
<h5 class="card-title">Blog Post Title 3</h5>
<p class="card-text">Short description of the blog post. This will give users a glimpse of the content.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white text-center py-3">
<p>© 2024 Ecommerce Website | All Rights Reserved</p>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>