No Description

index.html 652B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0,user-scalable=no"
  6. />
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>Document</title>
  9. <style>
  10. html,body {
  11. width: 100%;
  12. height: 100%;
  13. margin: 0;
  14. padding: 0;
  15. }
  16. img {
  17. width: 100%;
  18. position: absolute;
  19. left: 0;
  20. top: 0;
  21. z-index: -1;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <img src="./home.jpg" alt="">
  27. </body>
  28. </html>