-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
21 lines (21 loc) · 684 Bytes
/
Copy path404.html
File metadata and controls
21 lines (21 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex" />
<title>Page not found | Pan's Mainpage</title>
<link rel="icon" href="/public/assets/site/favicon.svg" type="image/svg+xml" />
<link rel="stylesheet" href="/src/styles/main.css" />
</head>
<body>
<main class="error-page">
<p class="eyebrow">404</p>
<h1>Page not found</h1>
<p class="subtitle">The page may have moved or no longer exists.</p>
<div class="link-row">
<a href="/">Return home</a>
</div>
</main>
</body>
</html>