-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
81 lines (67 loc) · 2.98 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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" />
<!--Update this for shortest possible description-->
<meta name="description" content="Custom error page for https://aupendu.github.io/" />
<!--This part is to give credit to the person who developed the site-->
<meta name="author" content="Aniket Patra" />
<!--og tags are for open graph-->
<meta property="og:title" content="404 Error" />
<meta property="og:url" content="https://aupendu.github.io/404" />
<meta property="og:image" content="https://aupendu.github.io/assets/images/error_page.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Alternate page for redirection of a lost person on internet" />
<meta property="og:type" content="article" />
<meta property="og:description" content="Custom error page for https://aupendu.github.io/" />
<meta property="og:locale" content="en_IN" />
<meta property="og:locale:alternate" content="en_US" />
<!---------------TWITTER CRDS------------------------>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="404 Error" />
<meta name="twitter:description" content="Custom error page for https://aupendu.github.io/" />
<meta name="twitter:url" content="https://aupendu.github.io/404" />
<meta name="twitter:image" content="https://aupendu.github.io/assets/images/error_page.png" />
<title>404 Error</title>
<!--For Bootstrap 4-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous" />
<!--Page CSS-->
<link rel="stylesheet" href="https://aupendu.github.io/404/404.css" />
<!--Page Icon-->
<link rel="icon" type="image/png" href="https://aupendu.github.io/assets/images/ak2.ico" />
<!--Font Awesome 5-->
<script src="https://kit.fontawesome.com/58bac38d13.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<h2>
This page does not
<span class="blinker">EXISTS</span>. Please select a valid page from the
list below:
</h2>
<div class="row">
<div class="col">
<ol type="I">
<li>
<a href="https://aupendu.github.io/">Profile of Aupendu Kar</a>
</li>
<li>
<a href="https://aupendu.github.io/progressive-dehaze">Iterative Dehazing</a>
</li>
<li>
<a href="https://aupendu.github.io/zero-restore">Zero Restore</a>
</li>
<li>
<a href="https://aupendu.github.io/sr-uncertainty">SR Uncertainty</a>
</li>
</ol>
</div>
</div>
</div>
</body>
</html>