2022-03-22 12:57:07 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
2022-03-31 16:14:53 +02:00
|
|
|
<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 tarasis - devChallenges.io</p>
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|