-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
56 lines (47 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<title>Captain Harris - 404</title>
<base href="https://cptharris.github.io" target="_self">
<meta name="author" content="cptharris">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta name="description" content="Captain Harris's Coding Website">
<meta name="keywords" content="HTML,CSS,Processing JavaScript,cptharris">
<link rel="icon" href="img/favicon.svg" type="image/svg+xml">
<link rel='alternate icon' href='img/favicon.ico' type='image/x-icon'>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha384-vtXRMe3mGCbOeY7l30aIg8H9p3GdeSe4IFlP6G8JMa7o7lXvnz3GFKzPxzJdPfGK" crossorigin="anonymous"></script>
<script src="js/includes.js"></script>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<style>
div#message-404 {
margin-left: 20%;
margin-right: 20%;
}
</style>
<body class="h-100">
<div class="container-fluid h-100">
<div class="row mb-auto">
<include src="headermenu.html">Loading menus...</include>
</div>
<div class="row align-items-center h-100 mb-5" style="background: rgb(28, 24, 42);">
<div class="col d-flex flex-column justify-content-center">
<main class="text-center">
<h1 class="display-1">404 - Page Not Found</h1>
<h2>That's a problem...</h2>
<h3>It looks like the page you entered does not exist. Maybe we need to make a new page.<br>Whatever happened, you should verify the URL you entered or <a href="/">just head back home.</a></h3>
<p>You can also <a href="https://github.com/cptharris/cptharris.github.io/issues/new/choose">create an issue on GitHub</a> if you think a link is broken.</p>
</main>
</div>
</div>
</div>
<include src="footermenu.html">Loading footer...</include>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>