error_404.php

Go to the documentation of this file.
00001 <?php header("HTTP/1.1 404 Not Found"); ?>
00002 <html>
00003 <head>
00004 <title>404 Page Not Found</title>
00005 <style type="text/css">
00006 
00007 body {
00008 background-color:       #fff;
00009 margin:                         40px;
00010 font-family:            Lucida Grande, Verdana, Sans-serif;
00011 font-size:                      12px;
00012 color:                          #000;
00013 }
00014 
00015 #content  {
00016 border:                         #999 1px solid;
00017 background-color:       #fff;
00018 padding:                        20px 20px 12px 20px;
00019 }
00020 
00021 h1 {
00022 font-weight:            normal;
00023 font-size:                      14px;
00024 color:                          #990000;
00025 margin:                         0 0 4px 0;
00026 }
00027 </style>
00028 </head>
00029 <body>
00030         <div id="content">
00031                 <h1><?php echo $heading; ?></h1>
00032                 <?php echo $message; ?>
00033         </div>
00034 </body>
00035 </html>