404.html 645 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
  5. <title>404 not find</title>
  6. <style type="text/css">
  7. *{
  8. margin: 0px;
  9. padding: 0px;
  10. }
  11. div{
  12. font-size: 256px;
  13. height: 320px;
  14. line-height: 320px;
  15. width: 500px;
  16. text-align: center;
  17. position: absolute;
  18. top: 50%;
  19. left: 50%;
  20. margin-top: -160px;
  21. margin-left: -250px;
  22. color: white;
  23. }
  24. </style>
  25. </head>
  26. <body style="background-color: #000000;">
  27. <div>404</div>
  28. </body>
  29. </html>