index.html 828 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. .test {
  10. position: relative;
  11. display: inline-block;
  12. }
  13. img {
  14. margin: 0;
  15. padding: 0;
  16. }
  17. h2 {
  18. mix-blend-mode: screen;
  19. color: #000;
  20. background-color: rgba(255,255,255,.6);
  21. text-align: center;
  22. position: absolute;
  23. left: 50%;
  24. transform: translateX(-50%);
  25. top: 0;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="test">
  31. <img src="https://4dkk.4dage.com/images/imagesSS-t-sd04dnbZ8i/tiles/4k/0_skybox2.jpg?x-oss-process=image/resize,h_512&time=20221031163357" alt="">
  32. <h2>Hello word</h2>
  33. </div>
  34. </body>
  35. </html>