-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
67 lines (67 loc) · 1.9 KB
/
404.html
File metadata and controls
67 lines (67 loc) · 1.9 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OpenEmail - 404 Page Not Found</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..700;1,100..700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/css/reset.css" />
<link rel="stylesheet" href="/css/styles.css" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/img/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/img/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/img/favicon-16x16.png"
/>
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<header>
<a href="index.html">
<img class="inverted" src="/img/logo_h.svg" alt="Logo" />
</a>
<nav>
<ul>
<li><a href="index.html">Manifesto</a></li>
<li><a href="index.html#stores">Clients</a></li>
<li>
<a
target="_blank"
href="https://github.com/Open-Email/MailHTTPS-Protocol"
>Protocol</a
>
</li>
<li>
<a target="_blank" href="https://github.com/Open-Email"
><img class="inverted" alt="" src="/img/git.svg"
/></a>
</li>
</ul>
</nav>
</header>
<main>
<h1>404 - Page Not Found</h1>
<p>
We couldn't find the page you were looking for. It may have been moved,
or it just doesn't exist.
</p>
<p><a href="/index.html" class="button">Back To Home Page</a></p>
</main>
</body>
</html>