How to create beautiful Website Post ?
Create a beautiful Website Post?
Welcome to My Blog
Blog Post Title
Blog post content goes here...
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="styles.css"/>
<title>My Blog</title>
<style>
/* Add your styling rules here */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
text-align: center;
padding: 1rem;
}
main {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
article {
margin-bottom: 2rem;
}
footer {
text-align: center;
padding: 1rem;
background-color: #333;
color: white;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Blog</h1>
</header>
<main>
<article>
<h2>Blog Post Title</h2>
<p>Blog post content goes here...</p>
</article>
<!-- Add more articles as needed -->
</main>
<footer>
<p>© 2023 My Blog</p>
</footer>
</body>
Comments
Post a Comment
Thanks for your Comments.