-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
100 lines (100 loc) · 3.26 KB
/
Copy path404.html
File metadata and controls
100 lines (100 loc) · 3.26 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!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 - InAmigos Foundation</title>
<meta name="robots" content="noindex, follow" />
<meta
name="description"
content="The page you are looking for was not found. Return to InAmigos Foundation to learn about our mission and projects."
/>
<link rel="icon" href="assets/logo.png" type="image/png" />
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap"
rel="stylesheet"
/>
<style>
:root {
--green: #1e7c4b;
--green-d: #134f30;
--gold: #e8a020;
--cream: #fdf9f2;
--gray: #555;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "DM Sans", sans-serif;
background: var(--cream);
color: var(--green-d);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 40px 24px;
}
.card {
max-width: 560px;
width: 100%;
background: #fff;
border-radius: 24px;
padding: 48px 40px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
text-align: center;
}
.logo {
width: 72px;
height: 72px;
object-fit: contain;
margin: 0 auto 20px;
}
h1 {
font-family: "Playfair Display", serif;
font-size: 2.4rem;
margin-bottom: 12px;
}
p {
color: var(--gray);
line-height: 1.7;
margin-bottom: 24px;
}
a.button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 26px;
background: var(--green);
color: #fff;
text-decoration: none;
border-radius: 999px;
font-weight: 600;
}
.hint {
margin-top: 16px;
font-size: 0.85rem;
color: var(--gray);
}
</style>
</head>
<body>
<div class="card">
<img
class="logo"
src="assets/logo.png"
alt="InAmigos Foundation logo"
/>
<h1>404 — Page Not Found</h1>
<p>
The page you were looking for doesn’t exist or may have been
moved. Explore our NGO initiatives and impact by heading back to
the homepage.
</p>
<a class="button" href="/index.html">Back to Homepage</a>
<div class="hint">#InAmigos · #TogetherWeRise</div>
</div>
</body>
</html>