1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>四维AI</title>
- <style>
- body {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- margin: 0;
- background-color: #f0f0f0;
- font-family: Arial, sans-serif;
- }
- h1 {
- font-size: 100px; /* 字体大小可以根据需要调整 */
- color: #333;
- }
- </style>
- </head>
- <body>
- <h1>四维AI</h1>
- </body>
- </html>
|