-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
77 lines (77 loc) · 2.27 KB
/
404.html
File metadata and controls
77 lines (77 loc) · 2.27 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
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found | IntimaLabs</title>
<meta name="robots" content="noindex, nofollow">
<link rel="icon" type="image/png" href="Assets/symbol.png">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #f2f2f2;
color: #2d3748;
padding: 2rem;
text-align: center;
}
.container {
max-width: 600px;
}
.logo {
width: 120px;
height: auto;
margin-bottom: 2rem;
}
h1 {
font-size: 6rem;
font-weight: 600;
color: #2d3748;
margin-bottom: 1rem;
}
h2 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
color: #4a5568;
}
p {
font-size: 1.125rem;
color: #718096;
margin-bottom: 2rem;
line-height: 1.6;
}
.button {
display: inline-block;
padding: 1rem 2rem;
background: #2d3748;
color: #ffffff;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.button:hover {
background: #1a202c;
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
</style>
</head>
<body>
<div class="container">
<img src="Assets/symbol.png" alt="IntimaLabs" class="logo">
<h1>404</h1>
<h2>Page Not Found</h2>
<p>Sorry, the page you're looking for doesn't exist or has been moved.</p>
<a href="/" class="button">Return to Home</a>
</div>
</body>
</html>