-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
31 lines (31 loc) · 1.29 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#22b455">
<link rel="stylesheet" href="CSS/error.css">
<link rel="icon" href="Files/warning.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;700&display=swap" rel="stylesheet">
<title>There was an Error 404</title>
</head>
<body class="no-script">
<div id="error">
<div class="error-container">
<h2 class="error-title">Oops! Page Not Found.</h2>
<h1 class="error-number">404</h1>
<p class="error-text">There was an error. We cannot find page you are looking for</p>
<a href="index.html" class="error-button">Go back</a>
</div>
</div>
<script>document.body.classList.remove("no-script");</script>
<noscript>
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;700&display=swap" rel="stylesheet">
<div class="err">
<h2>There was an error</h2>
<p>Sorry, but your browser doesn't support Javascript.<br> Please enable JavaScript in your browser for best experience for website.</p>
</div>
</noscript>
</body>
</html>