-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (46 loc) · 1.45 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
<!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="icon" href="devchallenges.png" />
<link
rel="shortcut icon"
type="image/x-icon"
href="https://devchallenges.io/"
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap"
rel="stylesheet"
/>
<!-- deafult css -->
<link rel="stylesheet" href="assets/style.css">
<title>404 Not Found | Devchallenges</title>
</head>
<body>
<main class="container">
<div class="grid__container">
<div class="items item1">404 NOT FOUND</div>
<div class="item_flexbox">
<div class="items item2">
<img class="img" src="Scarecrow.png" alt="Scarecrow_img">
</div>
<div class="items item3">
<div class="sub__items">
<h1 class="item3__title">I have bad news for you</h1>
<p class="item3__subtitle">The page you are looking for might be removed or is temporarily unavailable</p>
<button class="item3__btn">Back to homepage</button>
</div>
</div>
</div>
</div>
</main>
<footer class="items item4">
<p>Created By <a href="https://github.com/aayusranjan">aayusranjan</a> devChallenges.io</p>
</footer>
</body>
</html>