-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.html
59 lines (57 loc) · 1.82 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
<!doctype html>
<html lang="en">
<head>
<title>Dan</title>
<!-- meta -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="theme-color"
content="#181a1b"
media="(prefers-color-scheme: light)"
/>
<meta
name="theme-color"
content="#181a1b"
media="(prefers-color-scheme: dark)"
/>
<meta name="darkreader-lock" />
<!-- icons -->
<meta name="apple-mobile-web-app-title" content="Dan" />
<link
rel="icon"
type="image/png"
href="/favicon-96x96.png"
sizes="96x96"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/apple-touch-icon.png"
/>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link href="/site.webmanifest" rel="manifest" />
<!-- css -->
<link href="css/bootstrap.min.css" rel="stylesheet" />
</head>
<body style="background-color: rgb(252, 249, 247)">
<div class="container-fluid m-auto align-middle p-0 pt-5">
<p class="text-center m-0">
<img src="img/404.gif" width="200px" />
</p>
<p
class="text-center fs-1 m-0 text-bg-dark"
style="text-shadow: 2px 2px grey"
>
Error
</p>
<p class="text-center text-bg-dark pb-2">
<a class="btn btn-primary btn-sm" href="/" role="button"
>Take Me Home</a
>
</p>
</div>
<script src="js/bootstrap.bundle.min.js"></script>
</body>
</html>