Need help with Responsive Web Design Project - Build a Tribute Paget

Hello everyone,

I am working on the Responsive Web Design Project - Build a Tribute Page section of the freecodecamp courses.

I have passed 7 out of 10 tests but I do not know how to fix the following errors, I was wondering if anyone could help me with this issue. There seems to be something wrong with my

Internet Browser & Verson : Google Chrome Version 69.0.3497.100(Official Build) (64 Bit)

Here is my HTML code so far:

<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>


<div id = "main">
  
  <h1 id = "title">
    The God of High School
  </h1>
  <div id = "img-div">
    <img id = "image" src="https://vignette.wikia.nocookie.net/godofhighschool/images/9/9e/Uma%2BBaek.jpg/revision/latest?cb=20140327140824.jpg" alt "Baseball Boy and Cow girl">
    </img>
    <div id = "img-caption">
    An image of God of High School
    </div>
  </div>
  <div id = "tribute-info">
    <ul>
      <li>This is good</li>
    </ul>
  </div>
  <a id ="tribute-link" target = "_blank" href="https://en.wikipedia.org/wiki/Norman_Borlaug">More on Wikipedia here
  </a>
</div>

I hope this helps you understand my problem. Thank you for reading.

There are several problems in your code such the tags were not properly closed and attributes were not properly written. I have removed those errors as below. Now, the code only shows one error that the image is not at the center. You may fix that using some style to the image.

<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>

<div id="main">
  <h1 id="title">The God of High School</h1>
  <div id="img-div">
    <img id="image" src="https://vignette.wikia.nocookie.net/godofhighschool/images/9/9e/Uma%2BBaek.jpg/revision/latest?cb=20140327140824.jpg" alt="Baseball Boy and Cow girl">
    <div id="img-caption">An image of God of High School</div>
  </div>
  <div id="tribute-info">
    <ul>
      <li>This is good</li>
    </ul>

    <a id="tribute-link" target="_blank" href="https://en.wikipedia.org/wiki/Norman_Borlaug">More on Wikipedia here</a>
  </div><script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>

<div id="main">
  <h1 id="title">The God of High School</h1>
  <div id="img-div">
    <img id="image" src="https://vignette.wikia.nocookie.net/godofhighschool/images/9/9e/Uma%2BBaek.jpg/revision/latest?cb=20140327140824.jpg" alt="Baseball Boy and Cow girl">
    <div id="img-caption">An image of God of High School</div>
  </div>
  <div id="tribute-info">
    <ul>
      <li>This is good</li>
    </ul>

    <a id="tribute-link" target="_blank" href="https://en.wikipedia.org/wiki/Norman_Borlaug">More on Wikipedia here</a>
  </div>

Hope, it helps.

Thank you for your help, it works.