-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
46 lines (46 loc) · 1.19 KB
/
404.html
File metadata and controls
46 lines (46 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<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=Space+Grotesk:wght@300..700&display=swap" rel="stylesheet">
<style>
*{
font-family: "Space Grotesk", serif;
}
body{
background-color: #181717;
}
.container{
position: fixed;
width: 12rem;
height: 5rem;
max-width: 100vw;
max-height: 100dvh;
margin: auto;
color: white;
text-align: center;
inset: 0px;
}
button{
padding: 10px 20px;
background-color: white;
color: #181717;
border: none;
cursor: pointer;
}
a{
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<h2>Oops, You're on Wrong Page!</h2>
<button><a style="text-decoration: none; color: black; " href="index.php">Go to Home</button>
</div>
</body>
</html>