404.php 1009 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>404 - Page Not Found</title>
  6. <style type="text/css">
  7. body { background-color: #fff; margin: 40px; font-family: Arial, Sans-serif; font-size: 12px; color: #000; }
  8. #container {
  9. width: 600px;
  10. padding: 0px;
  11. margin: 0 auto;
  12. }
  13. #header {
  14. background-color: #000;
  15. -webkit-border-radius: 10px 10px 0 0;
  16. -moz-border-radius: 10px 10px 0 0;
  17. border-radius: 10px 10px 0 0;
  18. border: 1px solid #000;
  19. }
  20. #header h1 {
  21. color: #FFF;
  22. font-weight: bold;
  23. font-size: 16px;
  24. padding: 10px;
  25. margin: 0px;
  26. }
  27. #body {
  28. background-color: #EEE;
  29. -webkit-border-radius: 0 0 10px 10px;
  30. -moz-border-radius: 0 0 10px 10px;
  31. border-radius: 0 0 10px 10px;
  32. border: 1px solid #000;
  33. padding: 10px;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <div id="container">
  39. <div id="header">
  40. <h1>404 - Page not found!</h1>
  41. </div>
  42. <div id="body">
  43. <p>You can see this page because the URL you are accessing cannot be found.</p>
  44. </div>
  45. </div>
  46. </body>
  47. </html>