-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy patherror.php
More file actions
36 lines (34 loc) · 692 Bytes
/
error.php
File metadata and controls
36 lines (34 loc) · 692 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="logo.png">
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:200,200i,300,300i,400,400i&display=swap" rel="stylesheet">
<title>ERROR!</title>
</head>
<style>
body
{
font-family: 'Nunito Sans', sans-serif;
font-size:1.3rem;
cursor:default;
}
@media only screen and (max-width: 768px) {
body
{
font-size:1rem;
}
}
</style>
<body>
<br>
<br>
<center><img src="error.png">
<br><br>
Oops! An <font color="red"><i>error</i></font> occured! Sorry for the inconvenience!
<br>
<br>
<a href="index.php">Go to homepage</a>
</center>
</body>
</html>