How to Add Image in Text Background using HTML and CSS

PHOTO EMBED

Wed Dec 28 2022 15:03:18 GMT+0000 (Coordinated Universal Time)

Saved by @chelobotix #howto add image in text background using html and css

h1 {
        background-image: url(../images/h1_bg.jpg);
        background-repeat: repeat;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-top: 200px;
        font-size: 120px;
        text-align: center;
        font-weight: bold;
        text-transform: uppercase;
        font-weight: 800;
        -webkit-font-smoothing: antialiased;
      }
content_copyCOPY