forked from hoangsonww/My-Portfolio-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
62 lines (57 loc) · 1.69 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
<!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 - Son Nguyen Hoang</title>
<link rel="stylesheet" href="./packages/css/styles.css" />
<meta name="theme-color" content="#56c9e0" />
<style>
.not-found-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
text-align: center;
}
.not-found-container h1 {
font-size: var(--big-font-size);
color: var(--first-color);
}
.not-found-container p {
font-size: var(--h2-font-size);
color: var(--text-color-light);
margin-bottom: var(--mb-1-5);
}
.not-found-container a {
font-size: var(--normal-font-size);
color: var(--container-color);
background-color: var(--first-color);
padding: 1rem;
border-radius: 0.5rem;
text-decoration: none;
transition: background-color 0.3s;
}
.not-found-container a:hover {
background-color: var(--first-color-alt);
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-69TKSZGS7T"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-69TKSZGS7T');
</script>
</head>
<body>
<div class="not-found-container">
<h1>404</h1>
<p>Sorry, the page you're looking for doesn't exist.</p>
<a href="index.html">Go back to home</a>
</div>
</body>
</html>