404.html 479 B

1234567891011121314151617181920212223242526
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
  7. <title>404</title>
  8. <style>
  9. body{
  10. background-color:#444;
  11. font-size:14px;
  12. }
  13. h3{
  14. font-size:60px;
  15. color:#eee;
  16. text-align:center;
  17. padding-top:30px;
  18. font-weight:normal;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <h3>404,您请求的文件不存在!</h3>
  24. </body>
  25. </html>