-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
55 lines (49 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>404 Not Found</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/wavgen.css">
<link rel="stylesheet" href="css/fonts.css">
<style>
.error-container {
text-align: center;
padding: 50px 20px;
font-family: 'Ubuntu', sans-serif;
}
.error-code {
font-size: 72px;
color: #ffb936;
margin-bottom: 20px;
}
.error-message {
font-size: 24px;
color: #ffb936;
margin-bottom: 30px;
}
.home-link {
display: inline-block;
padding: 10px 20px;
background-color: #340093;
color: #ffb936;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.home-link:hover {
background-color: #4E008E;
}
</style>
</head>
<body>
<div id="header-container"></div>
<div class="error-container">
<div class="error-code">404</div>
<div class="error-message">Sorry, the page you were looking for was not found</div>
<a href="index.html" class="home-link">Return Home</a>
</div>
<div id="footer-container"></div>
<script src="js/loadComponents.js"></script>
</body>
</html>