-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
71 lines (65 loc) · 2.03 KB
/
error.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Invalid URL - Wizzl</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");
body {
font-family: "Montserrat", sans-serif;
margin: 0;
padding: 0;
background-color: #121318;
width: 100%;
height: 100vh;
color: white;
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
text-align: center;
padding: 20px;
border-radius: 5px;
background-color: #1d1d27;
}
@media all and (max-width: 40em) {
.container {
width: 100%;
}
}
a {
color: gray;
text-decoration: none;
transition: 0.3s;
}
a:hover {
color: whitesmoke;
text-decoration: none;
}
.btn {
background-color: #b26cf3;
color: white;
display: inline-block;
padding: 10px 25px;
margin-top: 15px;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="container">
<h1>Wizzl</h1>
<p>
Hi! Are you lost? You should not be here!<br />
If you see this page by mistake please contact us<br />at this
email address:
<a href="mailto:[email protected]">[email protected]</a>.
<br /><a href="https://wizzl.app" class="btn">Back To Wizzl</a>
</p>
</div>
</body>
</html>