-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 loc) · 1.23 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
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>404 Not Found | Jumanji</title>
<link rel="shortcut icon" href="images/devchallenges.png" type="image/x-icon">
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<main>
<header id="header">
<div class="logo">
<h1>404 NOT FOUND</h1>
</div>
</header>
<section id="content">
<div class="part_1">
<img src="images/Scarecrow.png" alt="Scarecrow Image">
</div>
<div class="part_2">
<div class="text_1">
<h2>I have Bad News for You</h2>
</div>
<div class="text_2">
<p>The page you are looking for might be removed or is temporarily unavailable</p>
</div>
<div class="button_part">
<a href="#"><button class="btn">Back To Homepage</button></a>
</div>
</div>
</section>
<footer id="footer">
<div class="coder_part">
<small>Coded By <a href="http://jumanjigobez.github.io/personal_portfolio/" target="_blank">Jumanji</a></small>
</div>
</footer>
</main>
</body>
</html>