forked from zero-to-mastery/HTML-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
38 lines (33 loc) · 1.06 KB
/
404.html
File metadata and controls
38 lines (33 loc) · 1.06 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
35
36
37
38
<!-- ---
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://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="resources/style/style.css" />
<link rel="stylesheet" href="resources/style/about-page.css" />
</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">
<h1>404</h1>
<h2>We could not find that page</h2>
<article>Please check the URL</article>
<!-- adding a link to go to previous page -->
<button class="mt-2" onclick="history.back">
Go back
</button>
</div>
</div>
</div>
</body>
</html>