-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
24 lines (21 loc) · 996 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=5" />
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@600&family=Montserrat:wght@600&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/reset.css" />
<link rel="stylesheet" href="./css/styles.css" />
<title>404 page not found</title>
</head>
<body>
<div class="content">
<h2 class="content__title">400 not found</h2>
<img class="content__img" src="images/Scarecrow.png" alt="scarecrow" />
<h1 class="content__header">I have bad news for you</h1>
<p class="content__body">The page you are looking for might be removed or is temporarily unavailable</p>
<button class="content__btn" href="#">back to homepage</button>
<footer class="content__footer">ishak @ DevChallenges.io</footer>
</div>
</body>
</html>