Images not showing up&elements not clearing

Hi all I have just started my first project on HTML and have now run into issues. With some user stories you have to code elements with corresponding ID’s which I have added but when I go to run the test (as i’m doing over time to check to see if i’m doing it right) it wont clear even though i’m putting the exact ID’s. In addition i have tried to add an image and double and triple checked to make sure i’m getting the code right but it just wont show up on the Test suite or the test results page
Any help is appreciated, thank you.

<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<html id="main">
  <head>
    <title id="title">Tesco PLC</title>
  </head>
  <body>
    <main id="main-container">
    <h1>Tesco PLC</h1>
      <h3>Every little helps</h3>
    </main>
      <div id="img-div">
        <figure>
        <img id="image" src="https://en.wikipedia.org/wiki/File:New_Tesco_store,_Crediton_-_geograph.org.uk_-_1747880.jpg" alt="Tesco superstore">
          <br>
          <figcaption id="img-caption">
            A new Tesco superstore located in Crediton
          </figcaption>
        </figure>
      </div>
  </body>


#main-container {
  text-align: center;
}

i used this link for the photo and was able to get it in.

https://upload.wikimedia.org/wikipedia/commons/4/49/New_Tesco_store%2C_Crediton_-geograph.org.uk-_1747880.jpg

i right clicked on the image through the link you provided in your code and put “view image” and then copied the URL and pasted that instead. try that

Hello Cheat_CoderTriple, welcome to the forum!
Whoops, I meant to welcome @kai-will19

Which project are you working on? Is it the tribute page?

Also, which tests are not passing?