<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>[Your Blog Name] - Explore Knowledge and Culture</title>
<meta name="description" content="Welcome to [Your Blog Name], a place to discover stories, history, education, and inspiration from around the world.">
<style>
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: #f8fafc;
color: #333;
}
header {
background: linear-gradient(135deg, #0099ff, #00cc99);
color: white;
text-align: center;
padding: 60px 20px;
}
header h1 {
font-size: 2.5em;
margin: 0;
}
header p {
font-size: 1.1em;
margin-top: 10px;
}
nav {
background: #0066cc;
text-align: center;
padding: 10px 0;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-weight: 500;
transition: 0.3s;
}
nav a:hover {
color: #ffeb3b;
}
.container {
max-width: 1100px;
margin: 30px auto;
padding: 20px;
}
.intro {
text-align: center;
margin-bottom: 40px;
}
.intro h2 {
color: #0099ff;
font-size: 2em;
}
.intro p {
font-size: 1.1em;
color: #555;
}
.posts {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 25px;
}
.card {
background: white;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
overflow: hidden;
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
.card img {
width: 100%;
height: 200px;
object-fit: cover;
}
.card-content {
padding: 15px 20px;
}
.card-content h3 {
color: #0099ff;
margin-bottom: 10px;
}
.card-content p {
font-size: 0.95em;
color: #555;
}
.card-content a {
display: inline-block;
margin-top: 10px;
color: #0066cc;
text-decoration: none;
font-weight: 600;
}
.card-content a:hover {
text-decoration: underline;
}
footer {
background: #0066cc;
color: white;
text-align: center;
padding: 20px;
margin-top: 50px;
}
footer a {
color: #fff;
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Welcome to [Your Blog Name]</h1>
<p>Explore stories, history, culture, and knowledge from around the world</p>
</header>
<nav>
<a href="/">Home</a>
<a href="/p/about-us.html">About</a>
<a href="/p/contact-us.html">Contact</a>
<a href="/search">Blog</a>
</nav>
<div class="container">
<section class="intro">
<h2>Featured Articles</h2>
<p>Dive into our latest posts about culture, education, and world history — written to inspire, educate, and empower.</p>
</section>
<section class="posts">
<div class="card">
<img src="https://source.unsplash.com/600x400/?palestine,landscape" alt="Palestine">
<div class="card-content">
<h3>Palestine: The Land of History and Resilience</h3>
<p>Discover the story of Palestine — its ancient roots, cultural richness, and the enduring spirit of its people.</p>
<a href="/2025/10/palestine-land-of-history.html">Read More →</a>
</div>
</div>
<div class="card">
<img src="https://source.unsplash.com/600x400/?malaysia,culture" alt="Malaysia">
<div class="card-content">
<h3>Malaysia: The Land of Unity and Diversity</h3>
<p>Explore Malaysia’s journey — a vibrant nation built on unity, cultural richness, and progress.</p>
<a href="/2025/10/malaysia-unity-diversity.html">Read More →</a>
</div>
</div>
<div class="card">
<img src="https://source.unsplash.com/600x400/?education,innovation" alt="Education">
<div class="card-content">
<h3>Education and Innovation</h3>
<p>Learn how innovation is shaping the future of education and transforming how we learn and grow.</p>
<a href="/2025/10/education-and-innovation.html">Read More →</a>
</div>
</div>
</section>
</div>
<footer>
<p>© 2025 [Your Blog Name]. All Rights Reserved. | <a href="/p/contact-us.html">Contact Us</a></p>
</footer>
</body>
</html>
No comments:
Post a Comment