forked from zero-to-mastery/HTML-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
57 lines (55 loc) · 1.75 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!-- ---
layout: base
title: '404 - Page Not Found'
permalink: /404.html
--- -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>404 - Page Not Found</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./404.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body class="bg-light">
<div class="container pt-5">
<div class="rounded mt-5 w-50 mx-auto border p-3 mb-5 bg-white rounded">
<div class="p-4">
<i
class="far fa-sad-tear"
style="font-size: 50px; margin-left: 45%"
></i>
<h1 class="text-center">Error-404</h1>
<blockquote>
<br />
<h2>We could not find that page....!</h2>
<p><i>Please check the url</i></p>
<!-- adding a link to go to previous page -->
</blockquote>
<br />
<button
class="mt-2 btn btn-outline-dark"
style="margin-left: 40%; font-size: 1.5em; padding: 2px;"
onclick="history.back"
>
Go right back
</button>
</div>
</div>
</div>
</body>
</html>