| 1234567891011121314151617181920212223242526272829303132 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta http-equiv="X-UA-Compatible" content="ie=edge" />
- <style>
- html,
- body {
- width: 100%;
- height: 100%;
- padding: 0;
- margin: 0;
- overflow: hidden;
- background: linear-gradient(172deg, rgba(27, 184, 172, 1) 0%, rgba(0, 142, 205, 1) 100%);
- }
- body {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .logo {
- width: 329px;
- height: 61px;
- }
- </style>
- <title>图途象</title>
- </head>
- <body>
- <img src="logo.png" class="logo" />
- </body>
- </html>
|