<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <title>Simple Blog Website</title>

<style>
.resp1{
    margin-left:15px;
    margin:10px;
    padding:10px;
    border-color: white;
    border-width: medium;  
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-wrap: pretty;
    width: fit-content;
}
.resp2{
    margin-left:20px;
    margin:10px;
    padding:10px;
    border-color: white;
    border-width: medium;  
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-wrap: pretty;
    width: fit-content;
}
  
.div_box{

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    /* contain: content; */
    overflow-wrap: anywhere;
}
</style>

  
</head>
<body>
 <header>
 <h1>Blog Title</h1>
 </header>
 <main>
 <section class="posts">
   
 <article class="post">
 <h4>Name</h4>
 <time datetime="YYYY-MM-DD">Post Date</time>
 <h2>Post Title</h2>
 <p>Short post summary...</p>
  <pre>$body</pre>
   
 <a href="#readmore" class="button">Read More</a>
 </article>
 <!-- More posts here -->
 </section>
 <aside class="sidebar">
 <!-- Sidebar content like categories, recent posts, etc.-->
 </aside>
 </main>
 <footer>
 <p>&copy; Copyright Your Name - Simple Blog Website</p>
 </footer>
</body>
</html>