-
Notifications
You must be signed in to change notification settings - Fork 26
/
404.html
42 lines (40 loc) · 1.76 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
<!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="./src/css/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, sorry for the inconvenience!!!!<br>
But you've found a page that doesn't exist.
</p>
<a href="./src/index.html" class="home__button">
Go Home
</a>
</div>
<div class="home__img">
<img src="./src/images/bugError.svg" alt="">
<div class="home__shadow"></div>
</div>
</div>
<footer class="home__footer">
<span><a href="https://github.com/mrsparkle-70/Emotion-detection-using-JS">Emotion Detector</a></span>
<span>|</span>
<span><a href="https://github.com/mrsparkle-70">Subham Sinha</a></span>
</footer>
</section>
</main>
<script src="./src/js/scrollreveal.min.js"></script>
<script src="./src/js/error.js"></script>
</body>
</html>