-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
64 lines (60 loc) · 1.6 KB
/
Copy path404.html
File metadata and controls
64 lines (60 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
const path = window.location.pathname;
if (path === '/call-for-ngo') {
window.location.href = 'https://docs.google.com/forms/d/e/1FAIpQLSfK5PwsISTMm-nEiAURHDiHmpOoSM_OWDxaZXHKbmpLu8DlPA/viewform?usp=sf_link';
} else if (path === '/call-for-mentors') {
window.location.href = 'https://docs.google.com/forms/d/e/1FAIpQLSfNsk38W5vTUni6wnc1LVPqK-L4c5gfTF15p4p6ah-9bdMFlQ/viewform?usp=sf_link';
} else if (path === '/apply-as-intern') {
window.location.href = 'https://docs.google.com/forms/d/e/1FAIpQLSdlUWlMxR_MfQjvVmmHduPtcEnL3zPWN4JBQYCYIML66uJuxA/viewform?usp=sf_link'
}
</script>
<style>
body {
margin: 0;
padding: 0;
}
.container {
width: 1200px;
max-width: calc(100% - 20px);
height: 100vh;
display: flex;
justify-content: center;
flex-direction: column;
margin: 0 auto;
padding: 0 10px;
text-align: center;
}
h1 {
font-size: 200px;
margin: 10px 0;
line-height: 100%;
color: #febf10;
text-shadow: 0 4px 7px rgba(0, 0, 0, 0.4);
}
h2 {
color: #555;
font-weight: 400;
font-size: 1.2rem;
}
a {
font-weight: bold;
color: #febf10;
text-decoration: none;
}
</style>
<div class="container">
<h1>404</h1>
<h2>
Oops!!!. Seems you lost your way, let's take you back <a href="/">home</a>
</h2>
</div>
</body>
</html>