-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
109 lines (81 loc) · 3.53 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!doctype html>
<!-- SPDX-License-Identifier: (CC-BY-4.0 OR GPL-3.0-or-later) -->
<!-- This file is part of Network Engineering Pro -->
<html lang="en">
<head>
<meta charset="utf-8" />
<!--
Network Engineering Pro (NetEng-Pro), a Free/Libre and Open Source Community
Copyright © 2024 Scott Lopez
---
I. Creative Commons Attribution 4.0 International
Network Engineering Pro (the "Licensed Material") is licensed under Creative Commons Attribution 4.0 International ("CC BY 4.0").
To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.
Per the terms of the License, you are free to distribute, remix, adapt, and build upon the Licensed Material for any purpose, even commercially.
You must give appropriate credit, provide a link to the License, and indicate if changes were made.
The Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable.
Permissions beyond the scope of this License—or instead of those permitted by this License—may be available as further defined within this document.
SPDX Reference: https://spdx.org/licenses/CC-BY-4.0.html
Canonical URL: https://creativecommons.org/licenses/by/4.0/
---
II. GNU General Public License
Network Engineering Pro is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License ("GNU GPL") as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This material is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
SPDX Reference: https://spdx.org/licenses/GPL-3.0-or-later.html
Canonical URL: https://www.gnu.org/licenses/gpl-3.0.html
---
Author: Scott Lopez
Email: <contact@neteng.pro>
Web: <https://bio.neteng.pro>
-->
<title>Page Not Found</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="canonical" href="https://neteng.pro/404.html" />
<base href="https://neteng.pro/404.html" target="_self" />
<style>
* {
line-height: 1.2;
margin: 0;
}
html {
color: #888;
display: table;
font-family: sans-serif;
height: 100%;
text-align: center;
width: 100%;
}
body {
display: table-cell;
vertical-align: middle;
margin: 2em auto;
}
h1 {
color: #555;
font-size: 2em;
font-weight: 400;
}
p {
margin: 0 auto;
width: 280px;
}
@media only screen and (max-width: 280px) {
body,
p {
width: 95%;
}
h1 {
font-size: 1.5em;
margin: 0 0 0.3em;
}
}
</style>
</head>
<body>
<h1>Page Not Found</h1>
<p>Sorry, but the page you were trying to view does not exist.</p>
</body>
</html>
<!-- IE needs 512+ bytes: https://docs.microsoft.com/archive/blogs/ieinternals/friendly-http-error-pages -->