-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
51 lines (47 loc) · 2.07 KB
/
404.html
File metadata and controls
51 lines (47 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="https://raw.githubusercontent.com/rubatopy/rubato/main/docs/logo_filled.png" />
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script
src="https://cdn.jsdelivr.net/npm/popper.js@1.14.6/dist/umd/popper.min.js"
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@4.2.1/dist/js/bootstrap.min.js"
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="/bootstrap.min.css" />
<style>
@import url("https://fonts.googleapis.com/css2?family=Fredoka&display=swap");
* {
font-family: "Fredoka", sans-serif;
}
body {
background-color: rgb(20, 20, 22);
}
.text-red {
color: rgb(255, 148, 132) !important;
}
a:focus,
button:focus {
outline: none;
box-shadow: none;
}
</style>
<title>weeeee rubato 404</title>
</head>
<body>
<div class="container text-center text-white my-5">
<h1 class="display-4 text-red pt-3">404</h1>
<br />
<p class="lead text-white ml-auto mr-auto">erm, this is embarrassing.</p>
<p class="text-white ml-auto mr-auto">the link you went to doesn't exist. <a class="btn btn-danger btn-sm" href="https://rubato.app">take me home, country roads</a></p>
</div>
</body>
</html>