-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
30 lines (30 loc) · 1.09 KB
/
Copy path404.html
File metadata and controls
30 lines (30 loc) · 1.09 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Page not found | Progressive Pomodoro</title>
<meta name="robots" content="noindex">
<link rel="icon" href="images/favicon-32.png" sizes="32x32">
<link rel="icon" type="image/svg+xml" href="images/logo.svg">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="preload" href="fonts/nunito-latin.woff2" as="font" type="font/woff2" crossorigin>
<link rel="stylesheet" href="css/pages.css">
<link rel="stylesheet" href="fonts/nunito.css">
</head>
<body>
<main class="wrap">
<div class="hero">
<h1>Page not found</h1>
<p>That page does not exist. The timer is still here.</p>
<p>
<a class="cta" href="https://progpomo.pages.dev/index.html">Open the timer</a>
</p>
<nav class="site-nav">
<a href="https://progpomo.pages.dev/landing.html">About the technique</a>
<a href="https://progpomo.pages.dev/about.html">About the developer</a>
</nav>
</div>
</main>
</body>
</html>