<header>
<nav>
<div class="logo">My Blog</div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="posts-container">
<article class="blog-post">
<h2>First Blog Post Title</h2>
<div class="meta-info">
<span class="date">September 18, 2025</span>
<span class="author">By Jane Doe</span>
</div>
<p>This is the introductory paragraph of your first blog post. You can write about anything you want here, from a number of topics to services and products you offer. The goal is to provide value to your readers.</p>
<a href="#" class="read-more">Read More »</a>
</article>
<article class="blog-post">
<h2>Our Products and Services</h2>
<div class="meta-info">
<span class="date">September 16, 2025</span>
<span class="author">By John Smith</span>
</div>
<p>In this post, we'll talk about our exciting new products and how our services can help you. We'll break down the benefits and features in an easy-to-understand way, making it simple for you to see the value we offer.</p>
<a href="#" class="read-more">Read More »</a>
</article>
</section>
<aside class="sidebar">
<div class="sidebar-widget">
<h3>About Me</h3>
<p>I'm a writer and entrepreneur sharing my thoughts and experiences with the world.</p>
</div>
<div class="sidebar-widget">
<h3>Categories</h3>
<ul>
<li><a href="#">Web Development</a></li>
<li><a href="#">Business</a></li>
<li><a href="#">Lifestyle</a></li>
</ul>
</div>
</aside>
</main>
<footer>
<p>© 2025 My Blog. All rights reserved.</p>
</footer>
<script src="script.js"></script>