-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
211 lines (184 loc) · 8.58 KB
/
blogs.html
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blogs</title>
<style>
body {
font-family: 'Varela', sans-serif;
color: #333;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
nav {
background-color: rgba(40, 52, 67, 0.85);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
padding: 10px 0;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
gap: 20px;
}
nav ul li a {
text-decoration: none;
color: #fff;
padding: 10px 20px;
border: 1px solid #4a525f;
transition: background-color 0.3s, color 0.3s;
}
nav ul li a:hover {
background-color: #7692A7;
}
header {
text-align: center;
padding: 40px;
background: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
header h1 {
margin: 0;
font-size: 36px;
}
main {
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
.blog-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
}
.blog-card {
background: #fff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}
.blog-card:hover {
transform: scale(1.02);
}
.blog-card img {
width: 100%;
height: auto;
display: block;
}
.blog-card-content {
padding: 15px;
}
.blog-card-content h2 {
font-size: 20px;
margin: 0;
}
.blog-card-content p {
margin: 10px 0 0;
}
.read-more {
display: inline-block;
margin-top: 10px;
text-decoration: none;
color: #7692A7;
font-weight: bold;
}
.read-more:hover {
text-decoration: underline;
}
footer {
text-align: center;
padding: 10px;
background-color: #333;
color: #fff;
}
</style>
</head>
<body>
<nav>
<ul>
<li class ="nav-item"><a class="nav-link nav-link-home" href="/">Home</a></li>
</ul>
</nav>
<header>
<h1>Our Blogs</h1>
</header>
<main>
<div class="blog-container">
<!-- Repeat this block for each blog -->
<div class="blog-card">
<img src="/static/images/blog1.jpeg" alt="Blog Title 1">
<div class="blog-card-content">
<h2>10 Low-Maintenance Plants for Busy Homeowners</h2>
<p>In our fast-paced world, the desire for a green, vibrant home often clashes with the reality of our busy schedules. However, bringing nature indoors doesn't have to be a time-consuming endeavor. This guide introduces you to 10 low-maintenance plants that can thrive even under the care of the busiest homeowners.</p>
<a href="/blog1" class="read-more">Read More</a>
</div>
</div>
<div class="blog-card">
<img src="/static/images/blog2.jpeg" alt="Blog Title 2">
<div class="blog-card-content">
<h2>Essential Electrical Safety Tips for Homeowners</h2>
<p>This blog post provides crucial electrical safety guidelines for homeowners to prevent accidents, fires, and costly damages. It covers nine key areas of electrical safety, including regular inspections, proper use of GFCI outlets, avoiding circuit overloads, safe extension cord usage, childproofing, water safety, appropriate lighting practices, knowing when to call professionals, and emergency preparedness. The article aims to help homeowners create a safer living environment by understanding and implementing these fundamental electrical safety measures.</p>
<a href="/blog2" class="read-more">Read More</a>
</div>
</div>
<div class="blog-card">
<img src="/static/images/blog3.jpeg" alt="Blog Title 3">
<div class="blog-card-content">
<h2>10 Time-Saving House Cleaning Hacks for Busy Homeowners</h2>
<p>In today's fast-paced world, finding time for thorough house cleaning can be challenging. However, a clean home is essential for both physical health and mental well-being. Here are 10 time-saving cleaning hacks that can help busy homeowners maintain a spotless home without spending hours on chores and activities.</p>
<a href="/blog3" class="read-more">Read More</a>
</div>
</div>
<div class="blog-card">
<img src="/static/images/blog4.jpeg" alt="Blog Title 4">
<div class="blog-card-content">
<h2>Unveiling Your Radiance: A Guide to Essential Beauty Services for the Modern Woman</h2>
<p>Dive into the world of transformative beauty treatments that enhance your natural glow. From rejuvenating facials to smooth waxing experiences, discover how these services can boost your confidence and self-care routine.</p>
<a href="/blog4" class="read-more">Read More</a>
</div>
</div>
<div class="blog-card">
<img src="/static/images/blog5.jpeg" alt="Blog Title 5">
<div class="blog-card-content">
<h2>10 DIY Cleaning Hacks to Make Your Home Sparkle</h2>
<p>This blog post will focus on easy, cost-effective, and eco-friendly cleaning tips that readers can implement immediately. It aims to simplify cleaning routines while achieving professional-level results.</p>
<a href="/blog5" class="read-more">Read More</a>
</div>
</div>
<div class="blog-card">
<img src="/static/images/blog6.jpeg" alt="Blog Title 6">
<div class="blog-card-content">
<h2>The Secret Life of Soil: Cultivating a Thriving Underground Ecosystem in Your Garden</h2>
<p>This blog post will dive deep into the often-overlooked world of soil ecology, explaining how gardeners can nurture a vibrant soil ecosystem to dramatically improve plant health and garden productivity. It will combine scientific insights with practical gardening advice.</p>
<a href="/blog6" class="read-more">Read More</a>
</div>
</div>
<div class="blog-card">
<img src="/static/images/blog7.jpeg" alt="Blog Title 7">
<div class="blog-card-content">
<h2>Smart Plumbing: How to Future-Proof Your Home's Water Systems</h2>
<p>This blog post will explore innovative plumbing technologies and sustainable practices that homeowners can implement to modernize their plumbing systems, save water and energy, and prepare for future challenges.</p>
<a href="/blog7" class="read-more">Read More</a>
</div>
</div>
<div class="blog-card">
<img src="/static/images/blog8.jpeg" alt="Blog Title 8">
<div class="blog-card-content">
<h2>The Rise of Home Services as a Service: Revolutionizing Home Maintenance</h2>
<p>This blog post will explore the growing trend of subscription-based home services, discussing its benefits, challenges, and impact on both service providers and homeowners. It will offer insights into how this model is changing the landscape of home maintenance and property management.</p>
<a href="/blog8" class="read-more">Read More</a>
</div>
</div>
</div>
</main>
<footer>
<p>© 2024 GrihaSeva. All rights reserved.</p>
</footer>
</body>
</html>