-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
404.html
102 lines (88 loc) · 3.85 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Page Not Found - Image & Video Tools</title>
<link rel="stylesheet" href="https://hoangsonww.github.io/Image-Video-Tools/src/css/common.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<meta name="description" content="The page you requested was not found on Image & Video Tools.">
<link rel="manifest" href="https://hoangsonww.github.io/Image-Video-Tools/manifest.json">
<meta name="theme-color" content="#007bff">
<link rel="icon" type="image/x-icon" href="https://hoangsonww.github.io/Image-Video-Tools/assets/favicon.ico">
<style>
#container {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 50px;
}
.btn {
color: #333;
}
.btn:hover {
color: blue;
}
body.dark-mode .btn {
color: #fff;
}
body.dark-mode .btn:hover {
color: #007bff;
}
</style>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-N2PN8MEEQV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-N2PN8MEEQV');
</script>
<body>
<div id="navbar">
<a id="header-link" href="https://hoangsonww.github.io/Image-Video-Tools/index.html">
<span class="title">Image & Video Tools</span>
</a>
<div>
<a href="https://hoangsonww.github.io/Image-Video-Tools/index.html">Resizer</a>
<a href="https://hoangsonww.github.io/Image-Video-Tools/src/html/cropper.html">Cropper</a>
<a href="https://hoangsonww.github.io/Image-Video-Tools/src/html/rotator.html">Rotator</a>
<a href="https://hoangsonww.github.io/Image-Video-Tools/src/html/filter.html">Filters</a>
<a href="https://hoangsonww.github.io/Image-Video-Tools/src/html/converter.html">Format Converter</a>
<a href="https://hoangsonww.github.io/Image-Video-Tools/src/html/background-remover.html">Background Remover</a>
<a href="https://hoangsonww.github.io/Image-Video-Tools/src/html/watermarker.html">Watermarker</a>
<a href="https://hoangsonww.github.io/Image-Video-Tools/src/html/thumbnail-generator.html">Thumbnail Generator</a>
<a href="https://hoangsonww.github.io/Image-Video-Tools/src/html/sound-remover.html">Sound Remover</a>
<a href="https://hoangsonww.github.io/Image-Video-Tools/src/html/about.html">About</a>
</div>
</div>
<div id="container" style="text-align: center; padding: 50px;">
<h1 style="color: orangered; margin-bottom: 20px;">404</h1>
<h2>Oops! Page Not Found</h2>
<p>The page you were looking for doesn't exist.</p>
<a href="index.html" class="btn" style="display: inline-block; margin-top: 20px;">Back to Home</a>
</div>
<button id="dark-mode-toggle" onclick="toggleDarkMode()">
<i class="fas fa-moon"></i>
</button>
<script>
document.addEventListener('DOMContentLoaded', () => {
if (localStorage.getItem('darkMode') === 'enabled') {
document.body.classList.add('dark-mode');
}
});
function toggleDarkMode() {
const body = document.body;
body.classList.toggle('dark-mode');
if (body.classList.contains('dark-mode')) {
localStorage.setItem('darkMode', 'enabled');
}
else {
localStorage.setItem('darkMode', 'disabled');
}
}
</script>
</body>
</html>