找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 28|回复: 0

分享一个404页面代码,非常简洁

[复制链接]

43

主题

49

回帖

322

积分

中级会员

积分
322
发表于 2024-11-13 10:01:45 | 显示全部楼层 |阅读模式
  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 - Page Not Found</title>
  7.     <style>
  8.         /* 全局样式 */
  9.         body {
  10.             font-family: Arial, sans-serif;
  11.             background-color: #f4f4f4;
  12.             margin: 0;
  13.             padding: 0;
  14.             display: flex;
  15.             flex-direction: column;
  16.             justify-content: center;
  17.             align-items: center;
  18.             min-height: 100vh;
  19.         }

  20.         h1 {
  21.             color: #333;
  22.         }

  23.         p {
  24.             color: #666;
  25.         }

  26.         /* 404 元素样式 */
  27.         #error {
  28.             font-size: 100px;
  29.             color: #ccc;
  30.         }

  31.         /* 按钮样式 */
  32.         a {
  33.             background-color: #007bff;
  34.             color: white;
  35.             border: none;
  36.             padding: 10px 20px;
  37.             border-radius: 5px;
  38.             cursor: pointer;
  39.             margin-top: 20px;
  40.             transition: background-color 0.3s ease;
  41.             text-decoration: none;
  42.         }

  43.     </style>
  44. </head>

  45. <body>
  46.     <div id="error">404</div>
  47.     <h1>未找到相关页面</h1>
  48.     <p>抱歉,您访问的页面可能不存在或者被删除!</p>
  49.     <a target="_blank" >返回首页</a>

  50. </body>

  51. </html>
复制代码
效果演示:


404页面

404页面



来源,4414,逗号广告联盟
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表