-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (33 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@700&family=Montserrat&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="shortcut icon" href="assets/favicon/devchallenges.png" type="image/x-icon">
<!-- Style -->
<link rel="stylesheet" href="css/style.css">
<title>404 not found</title>
</head>
<body>
<div class="container">
<h1>404 not found</h1>
<div class="center-container">
<div class="image">
<img src="assets/images/Scarecrow.png" alt="Image">
</div>
<div class="text">
<h3>I have bad news for you</h3>
<p>The page you are looking for might be removed or is temporarily unavailable.</p>
<a class="btn" href="index.html">Back to homepage</a>
</div>
</div>
<footer>
<p>Keiler Guardo <a target="_blank" href="https://devchallenges.io/">@DevChallenges.io</a></p>
</footer>
</div>
</body>
</html>