-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
404.html
80 lines (80 loc) · 2.7 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 Not Found - The WeatherMate App</title>
<link rel="stylesheet" href="https://hoangsonww.github.io/WeatherMate-App/src/css/style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
<link rel="icon" type="image/x-icon" href="https://hoangsonww.github.io/WeatherMate-App/utils/favicon.ico" />
<link rel="manifest" href="https://hoangsonww.github.io/WeatherMate-App/manifest.json" />
<style>
body {
background-image: url('https://hoangsonww.github.io/WeatherMate-App/utils/clouds.jpg');
font-family: 'Poppins', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
min-height: 100vh;
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.error-container {
text-align: center;
margin-top: 0;
}
.error-container h1 {
font-size: 6rem;
margin-bottom: 0;
}
.error-container p {
font-size: 1.5rem;
margin-top: 0;
}
.back-link {
font-size: 1.2rem;
color: #ffffff;
text-decoration: none;
padding: 10px 15px;
background-color: #534caf;
border-radius: 5px;
margin-top: 20px;
display: inline-block;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.back-link:hover {
background-color: #39329f;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HXL07SQFH0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-HXL07SQFH0');
</script>
</head>
<body>
<header style="text-align: center; background: rgba(255, 255, 255, 0.7); padding: 20px; border-radius: 16px">
<img
src="https://hoangsonww.github.io/WeatherMate-App/utils/logo.png"
id="img"
onclick="window.location.href='index.html'"
title="Click to go back to the home page"
style="cursor: pointer"
alt="WeatherMate Logo"
/>
<h1 id="my-heading">The WeatherMate App</h1>
<div class="error-container">
<h1>404</h1>
<p>Oops! The page you're looking for can't be found.</p>
<a href="https://hoangsonww.github.io/WeatherMate-App/" style="border-radius: 8px" class="back-link">Back to Home</a>
</div>
</header>
</body>
</html>