My Blog
Is Intermittent Fasting Good for Weight Loss?
Intermittent fasting can be an effective tool for weight loss. It focuses on when you eat rather than what you eat...
Read More
Top 5 Healthy Morning Habits
Start your day right with these simple, effective morning habits that can boost energy and improve your health...
Read More
🎨 style.css
css
Copy
Edit
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
line-height: 1.6;
}
.container {
width: 90%;
max-width: 960px;
margin: auto;
padding: 20px;
}
header {
background-color: #333;
color: white;
padding: 20px 0;
}
header h1 {
text-align: center;
margin-bottom: 10px;
}
nav {
text-align: center;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
}
.blog-post {
background: white;
margin: 20px 0;
padding: 20px;
border-left: 5px solid #333;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.blog-post h2 {
margin-bottom: 10px;
color: #333;
}
.blog-post a {
display: inline-block;
margin-top: 10px;
color: #007BFF;
text-decoration: none;
}
footer {
text-align: center;
padding: 20px;
background-color: #eee;
margin-top: 40px;
}
Comments
Post a Comment