<!DOCTYPE html>
<html>
<head>
    <title>My Webpage</title>
</head>
<body>
    <div class="header">
        <h1>Hello, World!</h1>
    </div>

    <div class="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">
    </div>

    <div class="footer">
        <p>This is a footer.</p>
    </div>
</body>
</html>