-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
33 lines (30 loc) · 913 Bytes
/
404.html
File metadata and controls
33 lines (30 loc) · 913 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link href="./assets/css/style.css" rel="stylesheet">
<link href="./assets/css/mystyle.css" rel="stylesheet">
</head>
<body>
<div id="title-bar-container"></div>
<script>
// Fetch and append the title bar content dynamically
const titleBarContainer = document.getElementById('title-bar-container');
fetch('./TitleBar.html')
.then(response => response.text())
.then(html => {
titleBarContainer.innerHTML = html;
});
</script>
<div class="content centered">
<h1 class="contentTitle">404 Page not found</h1>
<p>
The page you are looking for does not exist. Please check the URL and try again.
</p>
<p>
If you think this is a mistake, please <a onclick="window.location.href='/contact'">contact me</a>.
</p>
</div>
</body>
</html>