-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
executable file
·40 lines (38 loc) · 1.08 KB
/
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
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<style>
body, html {
margin: 0;
padding: 0;
font-size: 16px;
-webkit-font-smoothing: antialiased;
position: relative;
display: flex;
align-items: center;
justify-content: center;
background-color: #DFDFDF;
}
.content {
position: relative;
z-index: 10;
font-family: 'Montserrat', sans-serif;
}
.content h3 {
font-size: xx-large;
}
.content p {
font-size: x-large;
}
.content p span {
text-decoration: line-through;
}
</style>
<div class="content">
<h3>Whoops, that's embarrassing...</h3>
<p>We're sorry, but the page you’re trying to reach can’t be found. </p>
<p>Perhaps it was just a bad <span>link</span> dream?</p>
</div>
<!-- created by WesleyBryie for use at https://wesbryie.com/ -->