-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (39 loc) · 1.66 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
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Favicon link-->
<link rel="icon" href="images/devchallenges.png" />
<link rel="shortcut icon" type="image/x-icon" href="https://devchallenges.io/" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap" rel="stylesheet">
<title>404</title>
<!--Custom css-->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--Content Wrapper-->
<div id="wrapper">
<!--Header-->
<header class="head-text">
<p>404 NOT FOUND</p>
</header>
<!--Image section-->
<section class="image-section">
<img src="images/Scarecrow.png" alt="A picture of a Scarecrow wearing a hat">
</section>
<!--Text section-->
<section class="text-section">
<h2>I have bad news for you</h2>
<p>The page you are looking for might be removed or is temporarily unavailable</p>
<button><span>BACK TO HOMEPAGE</span></button>
</section>
</div>
</body>
</html>