-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
18 lines (18 loc) · 907 Bytes
/
404.html
File metadata and controls
18 lines (18 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 — MCS</title>
<meta name="theme-color" content="#0d1117">
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div style="display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:100dvh;text-align:center;padding:2rem">
<h1 style="font-family:var(--heading);font-size:clamp(3rem,8vw,6rem);font-weight:900;background:linear-gradient(135deg,var(--purple),var(--teal));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;margin-bottom:1rem">404</h1>
<p style="font-size:1.1rem;color:var(--text-secondary);margin-bottom:2rem">This page doesn't exist.</p>
<a href="/" class="btn-primary">Back to Home</a>
</div>
</body>
</html>