mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
41 lines
661 B
HTML
41 lines
661 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<title>Page Not Found | Dnote</title>
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
main {
|
|
text-align: center;
|
|
padding: 8em 0.5em;
|
|
}
|
|
|
|
.logo {
|
|
width: 207px;
|
|
}
|
|
|
|
.contact-list {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.contact-list li {
|
|
display: inline-block;
|
|
padding: 0 0.7em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>You are offline</h1>
|
|
<p>
|
|
Please check you connection and try again.
|
|
</p>
|
|
</main>
|
|
</body>
|
|
</html>
|