<!DOCTYPE html>
<html>
<head>
    <title>Simple Tags</title>
    <style>
        header, footer {
            background-color: #f0f0f0;
            padding: 10px;
        }
    </style>
</head>
<body>
    <header>
        <h1>This is a heading</h1>
    </header>
    <main>
        <p>This is a paragraph.</p>
        <p>This is another paragraph.</p>

        <img src="https://placecats.com/300/200" alt="Cats">
        <img src="https://placecats.com/400/400" alt="Other Cats">
    </main>
    <footer>
        <p>This is a footer.</p>
    </footer>
</body>
</html>