-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (32 loc) · 1.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!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">
<link rel="stylesheet" href="./src/css/main.css">
<title>404 Not Found</title>
</head>
<body>
<main>
<header>
<h1>404 NOT FOUND</h1>
</header>
<section class="hero">
<div class="lead">
<div class="lead-img">
<img src="./src/img/Scarecrow.png" alt="">
</div>
<div class="lead-text">
<h1 class="lead-heading">I have bad news for you</h1>
<p class="lead-info">The page you are looking for might be removed or is temporarily unavailable</p>
<a href="#" class="btn black">back to homepage</a>
</div>
</div>
</section>
</main>
<footer>
<p class="creator-label">created by <a class="username" href="#">Jesse Ekoh-Ordan</a> - <a href="https://devchallenges.io/">devchallenges.io</a> </p>
</footer>
</body>
</html>