-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.php
More file actions
42 lines (42 loc) · 832 Bytes
/
404.php
File metadata and controls
42 lines (42 loc) · 832 Bytes
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
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html, body {
background-color: #000;
padding: 0;
margin: 0;
height: 100%;
}
div {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-size: 36px;
font-family: 'Comic Sans MS', sans-serif;
color: #fff;
flex-direction: column;
}
span {
display: block;
margin: 10px 0;
}
h1 {
margin: 10px 0;
}
</style>
</head>
<body>
<div>
<h1>404</h1>
<span>Page not wanting to be found.</span>
<span>I hope you like Comic Sans.</span>
<span>(。◕‿◕。)</span>
</div>
</body>
</html>