-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
51 lines (51 loc) · 1.39 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
<!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">
<title>Page Not Found!</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;800&display=swap" rel="stylesheet">
<style>
::selection{
background: #1c1c1c;
color: #ffc600;
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Poppins',sans-serif;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
background: #ffc600;
}
h1{
font-size: 300px;
color: #1c1c1c;
}
.btn{
font-size: 16px;
padding: .3rem 0.75rem;
border-radius: 20px;
transition: .2s;
background: #1c1c1c;
color: #ffc600;
text-decoration: none;
}
.btn:hover{
text-decoration: underline;
}
</style>
</head>
<body>
<h1>404</h1>
<a href="https://randomquranverse.netlify.app" class="btn">Back to homepage!</a>
</body>
</html>