-
Notifications
You must be signed in to change notification settings - Fork 13
/
404.html
40 lines (40 loc) · 919 Bytes
/
404.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
<!DOCTYPE html>
<html>
<head>
<title>u failed</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
max-width: 1000px;
margin: 20px auto;
padding: 0 20px;
font-family: sans-serif;
}
input,
button,
select,
textarea {
font: inherit;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>u failed (404)</h1>
<p>u mispel URL. u bad.</p>
<p><a href="https://orbiit.github.io/gunn-web-app/">actual UGWA</a></p>
<p><a href="https://orbiit.github.io/">otehr shtuf</a></p>
<p id="url"></p>
<script>
document.querySelector('#url').textContent = `the url you mispel is ${
window.location.href
}`
</script>
</body>
</html>