-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (47 loc) · 1.28 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
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/assets/devchallenges.png" type="image/icon type" />
<link rel="stylesheet" href="style.css" />
<title>Error 404 | SulthanNK</title>
</head>
<body>
<header>
<h1 class="page-title">404 not found</h1>
</header>
<main>
<div class="container">
<img
class="content-img"
src="/assets/Scarecrow.png"
alt="A content scare crow image"
/>
<div class="wrapper">
<h2 class="sub-title">I have bad news for you</h2>
<p class="content">
The page you are looking for might be removed or is temporarily
unavailable
</p>
<button class="btn">back to homepage</button>
</div>
</div>
</main>
<footer>
<small>
created by
<a
class="profile-link"
href="https://portfolio.devchallenges.io/SulthanNK"
target="_blank"
>SulthanNK</a
>
-
<a class="site-link" href="https://devChallenges.io" target="_blank"
>DevChallenges.io</a
>
</small>
</footer>
</body>
</html>