-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5">
<link rel="icon" href="images/devchallenges.png">
<link rel="stylesheet" href="css/style.css">
<title>404 Page Not Found</title>
</head>
<body>
<div class="container">
<header>
<h2>404 NOT FOUND</h2>
</header>
<div class="content-container">
<div class="content-img">
<img src="images/Scarecrow.png" alt="">
</div>
<div class="content-info">
<h1>I have bad news for You</h1>
<p>
This Page Your looking for might to be removed or is
temporarily unavilable
</p>
<button><a href="">Back to Home</a></button>
</div>
</div>
</div>
<footer>
<div class="footer">
<p>Created by <b>@Sureshwebdeveloper</b> - devchallenges.io</p>
</div>
</footer>
</body>
</html>