12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0,user-scalable=no"
- />
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>Document</title>
- <style>
- html,body {
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- }
- img {
- width: 100%;
- position: absolute;
- left: 0;
- top: 0;
- z-index: -1;
- }
- </style>
- </head>
- <body>
- <img src="./home.jpg" alt="">
- </body>
- </html>
|