<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Challenge 1: 404 Not Found</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>
    <header>
        <h1>404 NOT FOUND</h1>
    </header>

    <main>
        <div class="container">
            <div class="img_container">
                <img src="Scarecrow.png" alt="Image of a scarecrow">
            </div>
            <div class="text_container">
                <h2>I have bad news for you</h2>
                <p>The page you are looking for might be removed or is temporarily unavailable</p>
                <a href="#">Back to homepage</a>
            </div>
        </div>
    </main>

    <footer>
        <p>created by <a href="https://devchallenges.io/portfolio/tarasis">tarasis</a> - devChallenges.io</p>
    </footer>

</body>

</html>