-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
38 lines (35 loc) · 1.63 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
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/brands.min.css" integrity="sha512-+oRH6u1nDGSm3hH8poU85YFIVTdSnS2f+texdPGrURaJh8hzmhMiZrQth6l56P4ZQmxeZzd2DqVEMqQoJ8J89A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="shortcut icon" type="image/png" href="Image/404 favicon.png">
<title>Error 404</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
font-family: 'Ubuntu', sans-serif;
margin: 10px;
overflow: hidden
}
</style>
</head>
<body>
<div class="d-flex align-items-center justify-content-center vh-100">
<div class="text-center row">
<div class=" col-md-6">
<img src="Image/404.png" alt="404" class="img-fluid" height="900px">
</div>
<div class=" col-md-6 mt-5">
<p class="fs-3"><i><span class="text-danger">Opps!</span> Page not found.</i></p>
<p class="lead">
Sorry, you end up with wrong URL. Please check the URL and try again.
</p>
<a href="./" class="btn btn-dark">Go Home</a>
</div>
</div>
</div>
</body>
</html>