-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
34 lines (31 loc) · 1.14 KB
/
404.html
File metadata and controls
34 lines (31 loc) · 1.14 KB
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
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Src/Style/404.css">
<title>Opps!</title>
<link rel="shortcut icon" type="image/png" href="/Assets/logo2.png" />
</head>
<body>
<div id="container">
<div class="content">
<h2>404</h2>
<h4>Opps Page Not Found!</h4>
<p>The Page you were looking for it doesn't exist!
You may have mistyped the address or the page may have been moved.</p>
<a href="/index.html">Back To Home</a>
</div>
</div>
<main id="contex-menu">
<div class="item">
<button onClick="window.location.reload()"><i class="bi bi-arrow-clockwise"></i> Reload</button>
</div>
<div class="item">
<button onclick="javascript:window.close()"><i class="bi bi-x-circle"></i> Exit</button>
</div>
</main>
<script src="Src/Script/404.js"></script>
</body>
</html>