404.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>404 Not Found</title>
  7. <style>
  8. body {
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. height: 100vh;
  13. margin: 0;
  14. background-color: #f5f5f5;
  15. font-family: Arial, sans-serif;
  16. }
  17. #error-container {
  18. text-align: center;
  19. }
  20. #error-code {
  21. font-size: 3em;
  22. font-weight: bold;
  23. color: #333;
  24. }
  25. #error-message {
  26. margin-top: 10px;
  27. color: #777;
  28. }
  29. #footer {
  30. position: fixed;
  31. bottom: 10px;
  32. text-align: center;
  33. width: 100%;
  34. color: #555;
  35. }
  36. #ids-link {
  37. color: #007bff; /* 设置链接颜色 */
  38. text-decoration: underline; /* 增加下划线效果 */
  39. font-weight: bold; /* 加粗 */
  40. font-style: italic; /* 斜体 */
  41. }
  42. </style>
  43. </head>
  44. <body>
  45. <div id="error-container">
  46. <div id="error-code">404</div>
  47. <div id="error-message">
  48. <p>抱歉,您所请求的页面未找到。😿</p>
  49. <p>Sorry, the page you requested could not be found.😹</p>
  50. </div>
  51. </div>
  52. <div id="footer">
  53. <i>Powered by</i> <a id="ids-link" href="http://www.sencorsta.com:2203/ice/Ids" target="_blank"><b>ids</b></a>
  54. </div>
  55. </body>
  56. </html>