-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (33 loc) · 958 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
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1,
maximum-scale=5"
/>
<link rel="stylesheet" href="./assets/styles/styles.css">
<title>404 Not found || Dev Challenges</title>
</head>
<body>
<header>
<p class="not-found">404 NOT FOUND</p>
</header>
<div class="container">
<div class="content">
<div class="content-image">
<img src="./assets/images/static/Scarecrow.png" alt="">
</div>
<div class="content-text">
<h4>I have bad news for you</h4>
<p>The page you are looking for might be removed or is temporarily unavailable</p>
<a href="#">Back To Homepage</a>
</div>
</div>
</div>
<footer>
<p>Created by <a href="https://chirantonmoy.vercel.app/">chiranSWE</a> - devChallenges.io</p>
</footer>
</body>
</html>