-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
34 lines (34 loc) · 941 Bytes
/
404.html
File metadata and controls
34 lines (34 loc) · 941 Bytes
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
<!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">
<title>404 , url not found on formal stack</title>
<style>
a{
background-color:#6610f2;
color: rgb(255, 255, 255);
padding: 7px;
border-radius: 5px;
text-decoration: none;
}
hr{
height: 2px;
background-color: rgba(0, 0, 0, 0.281);
border: 0;
}
</style>
</head>
<body style="text-align: center;">
<h1 style="margin: auto;"><code>404</code></h1>
<hr>
<a href="/app/">Back to the app</a>
<hr>
<p>
url you are looking for is not found on our domain ...
</p>
<hr>
<a href="https://github.com/NotableAPP/Formal-stack-pdfs/issues/new">create issue</a>
</body>
</html>