-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
20 lines (20 loc) · 694 Bytes
/
404.html
File metadata and controls
20 lines (20 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../css/error.css">
<link rel="stylesheet" href="./css/styles.css">
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<title>Not Found</title>
</head>
<body>
<main>
<div class="message-wrapper">
<h1>404 Error</h1>
<p>The page you are trying to access does not exist</p>
</div>
<div class="button-wrapper"><button onclick="window.location.pathname=`dashboard.html`" class="rounded-btn">Go to Home</button></div>
</main>
</body>
</html>