<!DOCTYPE html>

<html lang="en-ZA">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Welcome to the Static Website!</title>

    <style>

        body {

            font-family: sans-serif;

            margin: 0;

            padding: 0;

            background-color: #f4f4f4;

        }


        header {

            background-color: #333;

            color: #fff;

            text-align: center;

            padding: 1em 0;

        }


        main {

            padding: 20px;

            max-width: 960px;

            margin: 20px auto;

            background-color: #fff;

            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

        }


        h1, h2 {

            color: #333;

        }


        footer {

            background-color: #333;

            color: #fff;

            text-align: center;

            padding: 1em 0;

            position: fixed;

            bottom: 0;

            width: 100%;

        }

    </style>

</head>

<body>


    <header>

        <h1>Welcome to Our Static Website!</h1>

    </header>


    <main>

        <h2>About Us</h2>

        <p>This is a static version of our website. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam sed ex quis leo mattis viverra. In hac habitasse platea dictumst.</p>


        <h2>Contact</h2>

        <p>You can reach us at <a href="mailto:info@example.com">info@example.com</a>.</p>

    </main>


    <footer>

        <p>&copy; 2023 Your Company</p>

    </footer>


</body>

</html>