Search code examples
htmlcssimage

HTML images not showing up


I'm trying to make the images from here show up here but nothing i try is working.

I've tried changing the paths. I've even tried separating the HTML paths and putting them in the CSS property (as shown here). Some help would be appreciated.


Solution

  • Your path should start at "images", not "Website":

    .apple-icon {
      background-image: url("images/appleMewsic.png");
      background-size: contain;
      width: 32px;
      height: 32px;
      margin: 7px;
    }
    

    I believe this is the relevant HTML:

    <a rel="noopener"
       href="https://music.apple.com/yourprofile"
       target="_blank">
      <img class="apple-icon" alt="Apple Music" />
    </a>