-
Notifications
You must be signed in to change notification settings - Fork 70
/
404.html
47 lines (39 loc) · 1.58 KB
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Error 404</title>
<link rel="stylesheet" href="./error_files/error.css">
</head>
<body>
<main class="main">
<section class="home">
<div class="home__container container">
<div class="home__data">
<span class="home__subtitle">Oops! Something went wrong...</span>
<h1 class="home__title">Error 404</h1>
<p class="home__description">
Hey Buddy, looks like you've found a page that doesn't exist.
</p>
<a href="./index.html" class="home__button">
Go Home
</a>
</div>
<div class="home__img">
<img src="./assets/images/warning.png" alt="">
<div class="home__shadow"></div>
</div>
</div>
<footer class="home__footer">
<span><a href="https://github.com/Rakesh9100/Click-The-Edible-Game">Click-The-Edible-Game</a></span>
<span>|</span>
<span><a href="https://github.com/Rakesh9100">Rakesh Roshan</a></span>
</footer>
</section>
</main>
<script src="./error_files/scrollreveal.min.js"></script>
<script src="./error_files/error.js"></script>
</body>
</html>