-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
18 lines (11 loc) · 1.17 KB
/
404.php
File metadata and controls
18 lines (11 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
echo tab(3) . '<h1 style="text-align:center; line-height:5px;">Oops!</h1>' . "\n";
echo tab(3) . '<h2 style="text-align:center;">Error 404. Page not found.</h2>' . "\n";
echo tab(3) . "<blockquote>\n";
echo tab(4) . "<hr>\n";
echo tab(4) . '<p>In computer network communications, the <b>HTTP 404</b>, <b>404 not found</b>, <b>404</b>, <b>404 error</b>, <b>page not found</b>, or <b>file not found</b> error message is a hypertext transfer protocol (HTTP) standard response code, to indicate that the browser was able to communicate with a given server, but the server could not find what was requested. The error may also be used when a server does not wish to disclose whether it has the requested information.</p>' . "\n";
echo tab(4) . '<p>The website hosting server will typically generate a "404 Not Found" web page when a user attempts to follow a broken or dead link; hence the 404 error is one of the most recognizable errors encountered on the World Wide Web.</p>' . "\n";
echo tab(4) . '<p style="text-align:right;">— Wikipedia: <a href="https://en.wikipedia.org/wiki/HTTP_404">HTTP 404</a></p>' . "\n";
echo tab(4) . "<hr>\n";
echo tab(3) . "</blockquote>\n";
?>