-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path404.html
More file actions
41 lines (37 loc) · 1.1 KB
/
404.html
File metadata and controls
41 lines (37 loc) · 1.1 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
41
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-157182554-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-157182554-1');
</script>
<meta charset="utf-8">
<title>P1AM | 404</title>
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="../../styles.css">
<script src="../../modules.js"></script>
<script src="../../main.js"></script>
</head>
<body onload="setTimeout(history.back(), 1000)">
<!-- <body> -->
<div class="sidebar">
<div class="sidebar-header">
<a id="title" href="/index.html">P1AM</a>
</div>
<ul class="sidebar-content"></ul>
</div>
<div class="header">
<h1>404 Error</h1>
<div class="line"></div>
</div>
<div class="content">
<p>This page doesn't exist yet.</p>
</div>
</body>
</html>