123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>404 Not Found</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- margin: 0;
- background-color: #f0f0f0;
- color: #333;
- }
- .container {
- text-align: center;
- }
- h1 {
- font-size: 72px;
- margin: 0;
- }
- p {
- font-size: 24px;
- margin: 20px 0;
- }
- a {
- color: #007bff;
- text-decoration: none;
- font-size: 18px;
- }
- a:hover {
- text-decoration: underline;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <h1>404</h1>
- <p>页面未找到</p>
- </div>
- </body>
- </html>
|