404.html 634 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  5. <title>Page Not Found</title>
  6. <style type="text/css">
  7. body { background-color: #fff; text-align: center; }
  8. div.dialog {
  9. width: 50%;
  10. height: 150px;
  11. padding: 0 4em;
  12. margin: 4em auto 0 auto;
  13. border: 1px solid #eee;
  14. border-right-color: #444;
  15. border-bottom-color: #444;
  16. background-color: #eee;
  17. }
  18. h3 { color: #f00; line-height: 2em; }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="dialog">
  23. <h3>Page Not Found</h3>
  24. <p>The server has not found anything matching the Request-URI.</p>
  25. </div>
  26. </body>
  27. </html>