-
Notifications
You must be signed in to change notification settings - Fork 6
/
404.html
94 lines (93 loc) · 2.48 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="./assets/Profile-photo1.ico" />
<link rel="stylesheet" href="./assets/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Error</title>
</head>
<body>
<div>
<div class="mainbox">
<div class="err">
<h1>4</h1>
<img id="fas" src="./assets/question-circle-solid.svg" alt="?">
<h1>4</h1>
</div>
<div class="msg">
Maybe this page moved? Got deleted?
<br>
Never existed in the first place?
<br>
Let's go <a href="https://billand-by-sayan.netlify.app/">home</a> and try from there.</div>
</div>
<div>
<style>
.mainbox {
position: relative;
margin: 4rem auto;
width: 50%;
}
.err {
margin: 0 auto;
color: black;
font-family: 'Nunito Sans', sans-serif;
font-size: 3rem;
display: flex;
justify-content: center;
}
.err h1 {
margin: 0 1rem;
font-size: 10rem;
}
#fas {
margin: auto 0.8rem;
height: 8rem;
animation: spin 3s linear 0s infinite;
}
@keyframes spin {
0% {
transform: rotateZ(0deg);
}
100% {
transform: rotateZ(-360deg);
}
}
.msg {
margin: 2rem auto;
text-align: center;
font-family: 'Nunito Sans', sans-serif;
font-size: 1.6rem;
width: 100%;
}
a {
font-size: 1.6rem;
text-decoration: none;
color:crimson;
}
a:hover {
color: blue;
text-decoration: underline;
}
@media (max-width: 900px) {
.mainbox {
margin: 10rem auto;
width: 90%;
}
.err h1 {
margin: 0.4rem;
font-size: 6rem;
}
#fas {
margin: auto 0.6rem;
height: 5rem;
}
.msg, a {
margin: 3rem 0;
font-size: 1.1rem;
}
}
</style>
</body>