-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
154 lines (140 loc) · 5.05 KB
/
index.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!-- <script>
setTimeout(myURL, 2000);
var result = document.getElementById("result");
result.innerHTML = "<b> The page will redirect after delay of 2 seconds";
function myURL() {
document.location.href = './landing3';
}
</script>
<h1>thanks for visiting us</h1>
<h2>parked by <a href="http://buana.studio">Buana Studio</a></h2>
<h3>klik here for <a href="https://utas.me/upskillingbytrustco">upupskilling products</a></h3>
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Buana Explorer</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5f1e6;
font-family: Arial, sans-serif;
text-align: center;
overflow: hidden;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
position: relative;
height: 90vh;
}
.background {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
}
.illustration {
width: 60vw;
height: 60vh;
}
.illustration svg > g > path{
fill: #fff;
color:white;
/* background-color:white;*/
/* background-image: url('assets/svgs/lost-traveller.svg'); */
/* background-size: contain;*/
/* background-position: center;*/
/* background-repeat: no-repeat;*/
}
h1 {
font-size: 48px;
color: #5a422a;
}
p {
font-size: 22px;
color: white;
width:80vw;
}
.signpost {
display: flex;
flex-direction: column;
gap: 10px;
}
.signpost a {
padding: 10px 20px;
background-color: #a67c52;
color: white;
text-decoration: none;
border-radius: 5px;
}
.signpost a:hover {
background-color: #8c6239;
}
</style>
</head>
<body>
<!-- <svg class="background" viewBox="0 0 100 50" preserveAspectRatio="none">
<path d="M0,40 C20,20 40,20 60,40 C80,60 100,60 120,40 L120,50 L0,50 Z" fill="#d2b48c" />
</svg> -->
<!-- <svg class="background" width="100%" height="100%" viewBox="0 0 800 400" xmlns="http://www.w3.org/2000/svg"> -->
<!-- Background -->
<!-- <rect width="100%" height="100%" fill="#F5E6C8" /> -->
<!-- Sun -->
<!-- <circle cx="650" cy="80" r="40" fill="#FFD27F" /> -->
<!-- Sand Dunes -->
<!-- <path d="M0 300 Q150 250 300 280 T600 300 T800 270 L800 400 L0 400 Z" fill="#E5C29F" />
<path d="M0 320 Q200 280 400 310 T800 320 L800 400 L0 400 Z" fill="#D9B894" opacity="0.7" />
<path d="M0 350 Q100 330 200 350 T400 370 T600 360 T800 340 L800 400 L0 400 Z" fill="#C4A484" opacity="0.5" /> -->
<!-- </svg> -->
<svg class="background" width="100vw" height="100vh" viewBox="0 0 800 400" preserveAspectRatio="xMidYMid slice" xmlns="http://www.w3.org/2000/svg">
<!-- Background -->
<rect width="100%" height="100%" fill="#0D1B2A" />
<!-- Moon -->
<circle cx="650" cy="80" r="40" fill="#F5E6C8" />
<!-- Stars -->
<circle cx="100" cy="50" r="2" fill="#ffffff" />
<circle cx="200" cy="100" r="2" fill="#ffffff" />
<circle cx="400" cy="50" r="2" fill="#ffffff" />
<circle cx="600" cy="150" r="2" fill="#ffffff" />
<circle cx="750" cy="80" r="2" fill="#ffffff" />
<!-- Sand Dunes -->
<path d="M0 300 Q150 250 300 280 T600 300 T800 270 L800 400 L0 400 Z" fill="#5E503F" />
<path d="M0 320 Q200 280 400 310 T800 320 L800 400 L0 400 Z" fill="#8C7851" opacity="0.7" />
<path d="M0 350 Q100 330 200 350 T400 370 T600 360 T800 340 L800 400 L0 400 Z" fill="#A68A64" opacity="0.5" />
</svg>
<div class="container">
<!-- <div class="illustration"></div> -->
<object class="illustration" data="./assets/svgs/lost-traveller.svg" type="image/svg+xml"></object>
<!-- <h1>404 - Page Not Found</h1> -->
<p>"And whoever puts his trust in Allah, He will guide him to the straight path."</p>
<div class="signpost">
<a href="http://buana.studio">Return Home</a>
<a href="http://t.me/thesaktibuana">Seek Help</a>
<a href="http://t.me/thesaktibuana">Wait 2 seconds to redirect.</a>
</div>
</div>
<script>
setTimeout(myURL, 2000);
var result = document.getElementById("result");
result.innerHTML = "<b> The page will redirect after delay of 2 seconds";
function myURL() {
document.location.href = './landing60';
}
</script>
</body>
</html>