-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
40 lines (38 loc) · 1.29 KB
/
404.html
File metadata and controls
40 lines (38 loc) · 1.29 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- meta data -->
<meta name="author" content="Md. Jahidul Islam Sujan">
<!-- no index -->
<meta name="robots" content="noindex, nofollow">
<!-- auto reload and redirect -->
<meta http-equiv="refresh" content="0; url=https://mrdeveloperjis.github.io">
<!-- favicon -->
<link rel="shortcut icon" href="assets/img/JIS-favicon.png" type="image/x-icon">
<!-- page title -->
<title>404 - Not Found</title>
<!-- custom css -->
<style>
* {
margin: 0;
padding: 0;
}
body {
background: #0c0c0c url("assets/img/404.png") center center / cover no-repeat fixed;
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GP0L6FC17M"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
if (window.location.hostname.endsWith('.github.io')) {
gtag('js', new Date());
gtag('config', 'G-GP0L6FC17M');
}
</script>
<!-- Google tag (gtag.js) --- done -->
</head>
</html>