HTMLify

test.html
Views: 209 | Author: demo
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <title>Sample Post Template</title>
</head>
<body>
    <header>
        <h1>Sample Blog Post</h1>
    </header>
    <main>
        <article>
            <h2>Title of the Post</h2>
            <p>Posted on <time datetime="2023-10-08">October 8, 2023</time> by <span class="author">Author Name</span></p>
            <p>This is the content of your blog post. You can write as much as you want here.</p>
        </article>
    </main>
    <footer>
        <p>&copy; 2023 Your Website Name</p>
    </footer>
</body>
</html>

Comments