Untitled

mail@pastecode.io avatarunknown
plain_text
15 days ago
1.2 kB
1
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your Antifa Blog</title>
    <style>
        body {
            background-color: black;
            color: red;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
        header {
            background-color: red;
            padding: 10px;
        }
        header h1 {
            margin: 0;
            padding: 0;
            font-size: 36px;
        }
        .content {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: white;
            border-radius: 5px;
        }
    </style>
</head>
<body>
    <header>
        <h1>Your Antifa Blog</h1>
    </header>
    <div class="content">
        <h2>Latest Posts</h2>
        <article>
            <h3>Post Title 1</h3>
            <p>Content of your first post goes here...</p>
        </article>
        <article>
            <h3>Post Title 2</h3>
            <p>Content of your second post goes here...</p>
        </article>
        <!-- Add more articles for additional posts -->
    </div>
</body>
</html>