-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.html
More file actions
67 lines (67 loc) · 2 KB
/
Copy path404.html
File metadata and controls
67 lines (67 loc) · 2 KB
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
<!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 - Header Editor Pro Free</title>
<meta name="robots" content="noindex">
<link rel="icon" type="image/png" sizes="128x128" href="src/assets/icons/icon128.png">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
max-width: 600px;
margin: 0 auto;
padding: 80px 20px;
text-align: center;
line-height: 1.6;
color: #333;
background-color: #f8f9fa;
}
.container {
background: white;
padding: 50px 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
font-size: 4em;
margin: 0;
color: #667eea;
}
h2 {
color: #2c3e50;
margin: 20px 0;
}
p {
color: #666;
margin-bottom: 30px;
}
.btn {
display: inline-block;
padding: 12px 24px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-decoration: none;
border-radius: 6px;
font-weight: 500;
margin: 5px;
transition: transform 0.2s;
}
.btn:hover {
transform: translateY(-2px);
}
.btn-secondary {
background: #3498db;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<h2>Page Not Found</h2>
<p>The page you're looking for doesn't exist or has been moved.</p>
<a href="/" class="btn">Go to Homepage</a>
<a href="https://chromewebstore.google.com/detail/cpdkigffbilaglfmddclhgfflimpaeim" class="btn btn-secondary" target="_blank" rel="noopener">Get the Extension</a>
</div>
</body>
</html>