-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy path404.html
More file actions
19 lines (18 loc) · 830 Bytes
/
404.html
File metadata and controls
19 lines (18 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<link href="https://fonts.googleapis.com/css2?family=Heebo:wght@300;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="/assets/404.css">
</head>
<body>
<h1>404</h1>
<p>Oops! The page you are looking for does not exist.</p>
<button class="btn-custom" onclick="goHome()">Return Home</button>
<script>const goHome = () => window.location.href = "/gxmes";</script>
</body>
</html>