三种502页面静态源码

三种502页面静态源码

20241023133043570-image

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>502 Bad Gateway</title>
    <style>
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #282c34;
            color: #ffffff;
            text-align: center;
            padding: 100px;
            margin: 0;
        }
        h1 {
            font-size: 80px;
            margin: 0;
        }
        p {
            font-size: 24px;
            margin: 20px 0;
        }
        a {
            color: #61dafb;
            text-decoration: none;
            font-weight: bold;
            border: 2px solid #61dafb;
            padding: 10px 20px;
            border-radius: 5px;
            transition: background-color 0.3s, color 0.3s;
        }
        a:hover {
            background-color: #61dafb;
            color: #282c34;
        }
    </style>
</head>
<body>
    <h1>502</h1>
    <p>网关错误</p>
    <p>我们遇到了一些问题,请稍后再试。</p>
    <p><a href="/">返回首页</a></p>
</body>
</html>

 

20241023133103583-image

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>502 Bad Gateway</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f2f2f2;
            color: #333;
            text-align: center;
            padding: 50px;
        }
        h1 {
            font-size: 50px;
            color: #e74c3c;
        }
        p {
            font-size: 20px;
        }
        a {
            text-decoration: none;
            color: #3498db;
        }
        a:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <h1>502 Bad Gateway</h1>
    <p>服务器遇到错误,无法完成请求。</p>
    <p>请稍后再试,或者返回<a href="/">首页</a>。</p>
</body>
</html>

 

20241023133117574-image

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>502 Bad Gateway</title>
    <style>
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background-color: #ffffff;
            color: #333;
            text-align: center;
            padding: 100px;
            margin: 0;
        }
        .container {
            max-width: 600px;
            margin: auto;
            border: 1px solid #e1e1e1;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }
        h1 {
            font-size: 60px;
            color: #d9534f;
            margin: 0;
        }
        p {
            font-size: 18px;
            margin: 20px 0;
        }
        a {
            color: #5bc0de;
            text-decoration: none;
            font-weight: bold;
        }
        a:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>502</h1>
        <p>糟糕!网关错误。</p>
        <p>我们正在努力修复这个问题。请稍后再试。</p>
        <p>返回<a href="/">首页</a>。</p>
    </div>
</body>
</html>

零一物语www.docn.net首发

用云无忧
© 版权声明
THE END
喜欢就支持一下吧
点赞11 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容