Tribute Page - Build a Tribute Page

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang='en'>
  <head>
    <meta charset='UTF-8'>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Ade's Tribute Page</title>
    <link rel='stylesheet' href='sytles.css'>
  </head>
  <body>
    <main id='main'>
      <h1 id='title'>Dr N.M</h1>
      <figure id='img-div'>
        <img id="image" src="https://cdn.freecodecamp.org/testable-projects-fcc/images/tribute-page-main-image.jpg" alt="Dr. Norman Borlaug seen standing in Mexican wheat field with a group of biologists">
        <figcaption id='img-caption'>I love him</figcaption>
      </figure>
      <h3 id='tribute-info'>Tribute info</h3>
      <a id="tribute-link" href="https://en.wikipedia.org/wiki/Norman_Borlaug" target="_blank">Wikipedia entry</a>
    </main>
  </body>
</html>
/* file: styles.css */
img {
  display: block;
  margin: 0 auto;
}

#image {
  max-width: 100%;
  height: auto;
  align: inherit;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Tribute Page - Build a Tribute Page

Link to the challenge:

Welcome to our community!

Describe your issue in detail here.