-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.qmd
39 lines (28 loc) · 833 Bytes
/
404.qmd
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
---
title: Page Not Found
---
The page you requested cannot be found (perhaps it was moved or renamed).
## You may want to try searching to find the page's new location.
<style>
.center-button {
display: flex;
justify-content: center;
align-items: center;
}
.return-button-styled {
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: #007bff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.return-button-styled:hover {
background-color: #0056b3;
}
</style>
<div class="center-button">
<button class="return-button-styled" onclick="window.location.href = '/'">Return to Home Page</button>
</div>