File size: 1,649 Bytes
63e943a 4b75c6e dbfc1d2 0c2f362 e72dcde 3ff528f 4b75c6e 0c2f362 e72dcde 0c2f362 4b75c6e 3ff528f 4b75c6e 3ff528f 4b75c6e 63e943a dd6575d 63e943a a907f1f 63e943a a907f1f 63e943a 6ca0865 64c6877 63e943a |
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 |
<!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>
.bpost{
margin:10px 10px 10px 10px!important;
padding:10px;
border-color: white;
border-width: medium;
border-radius: 10px;
background:cornflowerblue;
display: flex;
flex-wrap: wrap;
flex-direction: column;
text-wrap: pretty;
width: fit-content;
}
.resp1{
margin:10px 10px 10px 20px!important;
padding:10px;
border-color: white;
border-width: medium;
display: flex;
flex-wrap: wrap;
flex-direction: column;
text-wrap: pretty;
width: fit-content;
}
.resp2{
margin:10px 10px 10px 30px!important;
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>$title</h1>
</header>
<main>
<section class="posts">
<article class="post">
<h4>$name</h4>
<time datetime="YYYY-MM-DD">Post Date</time>
<h2>$title</h2>
<p>Short post summary...</p>
<div>$body</div>
<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>© Copyright Your Name - Simple Blog Website</p>
</footer>
</body>
</html> |