-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
48 lines (41 loc) · 953 Bytes
/
Copy path404.php
File metadata and controls
48 lines (41 loc) · 953 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
43
44
45
46
47
48
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<?php include 'Header.html'; ?>
<meta charset="UTF-8">
<meta http-equiv="X-Frame-Options" content="deny">
<title>Share.gy: Content not found</title>
<style>
body{
color: #555;
}
#logoImage {
width: 22%;
height: auto!important;
}
@media (min-width : 304px) and (max-width: 415px){
#mobileMenu{
display: inline-block;
}
.members{
display: none;
}
}
.members{
margin-left: 57%!important;
}
</style>
</head>
<body> <center>
<h1>404: Content does not exist</h1>
<a href="index.php">Back to home</a>
</center>
<?php
?>
</body>
</html>