-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
81 lines (77 loc) · 3.3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0'>
<meta name="robots" content="noindex">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>Page Not Found | Arsh Saxena</title>
<link rel="stylesheet" href="/pages/404/style.css">
<link rel="stylesheet" href="/other/globals/global-fonts.css">
<link rel="stylesheet" href="/other/globals/global-navbar/global-navbar.css">
<link rel="stylesheet" href="/other/globals/global-footer/global-footer.css">
<link rel="stylesheet" href="/other/globals/global-scrollbar.css">
<link rel="stylesheet" href="/other/globals/global-top-button/global-top-button.css">
<link rel="stylesheet" href="/other/globals/global-preloader/global-preloader.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<meta name="theme-color" content="#1d1d1f">
<meta name="msapplication-navbutton-color" content="#1d1d1f">
<meta name="apple-mobile-web-app-status-bar-style" content="#1d1d1f">
<link rel="icon" href="resources/first-page/icons/arsh.png">
</head>
<body>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script>
$(function(){
$("#nav").load("/other/globals/global-navbar/global-navbar.html");
$("#footer").load("/other/globals/global-footer/global-footer.html");
$("#top-button").load("/other/globals/global-top-button/global-top-button.html");
});
</script>
<div class="container">
<span id="top-button"></span>
<div class="nav-container">
<nav class="nav" id="nav">
</nav>
</div>
<div class="main-div">
<div class="caption">
<div class="caption-text">
✋🏻Error 404
<br>
The page you're looking for can't be found.
</div>
</div>
<div>
<div class="home-button">
<a href="/">HOME</a>
</div>
<br>
<div class="view-site-map">
<a href="pages/sitemap/">Or see site map</a>
</div>
</div>
</div>
<div class="footer-conatiner">
<footer>
<div class="footer" id="footer-part">
<div class="footer-text">
<img src="/resources/first-page/icons/arsh.png" alt="arsh-img-footer">
<span class="path">
<span class="arrow"><i class="fa-solid fa-angle-right"></i></span>
<span class="page-name">Page Not Found</span>
</span>
</div>
</div>
</footer>
<footer id="footer"></footer>
</div>
</div>
</body>
</html>