-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
21 lines (21 loc) · 949 Bytes
/
error.html
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="en">
<head>
<title>Error</title>
<meta charset="utf-8">
<meta name="description" content="Custom page displayed when an error is encountered.">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="../images/LRS.ico" type="image/x-icon">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/error-style.css">
</head>
<body>
<div class="error-container">
<h1 class="error-code">404</h1>
<h2 class="error-name">PAGE NOT FOUND</h2>
<p class="error-message">The page you are looking for might have been removed, had its name changed or is temporarily unavailable.</p>
<a class="back-to-home-btn" href="index.html">Back to home</a>
</div>
</body>
</html>