New version submitted by TomB
[carbonphp.git] / Source / application / errors / error_404.php
blob52fee0e25f3175dbca80915d393fa9bae4dfd9f7
1 <?php
3 header("HTTP/1.1 404 Not Found");
5 ?>
7 <html>
8 <head>
9 <title>404 Not Found</title>
10 <style type="text/css">
11 body {
12 background: #fff;
13 color: #000;
14 font-family: "Lucida Sans Unicode", "Lucida Grande";
15 font-size: 12px;
16 margin: 30px;
19 #container {
20 padding: 25px 12px 25px 12px;
23 h1 {
24 color: #770000;
25 font-size: 14px;
26 font-weight: normal;
27 margin-bottom: 5px;
29 </style>
30 </head>
32 <body>
33 <div id="container">
34 <h1><?=$heading;?></h1>
35 <p><?=$message;?></p>
36 </div>
37 </body>
38 </html>