Unable to display image in tribute page certification project: Build a tribute page

I am unable to display image in the tribute page certification project.
I used the following syntax:
<img src="xyz">

Except the images display, all other things are working perfectly.

Please help me clear this issue.

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Your syntax is correct assuming you put a valid URL in the quotes

Yes, I did put a valid url. I even tried using the same url of a cat image from the first project i.e., the cat photo app.
It still does not work

Please share your code. Can’t really say what’s wrong without seeing it.

The code is as follows:

<!DOCTYPE html>
<html lang="en">
  <link rel="stylesheet" href="styles.css">
 
  <head>
    <title id="title">Tribute Page</title>
  </head>

  <body>
     <main id="main">
      <h1>Shri Ram</h1>
      <div id="img-div">
        <img scr="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" id="image">
        <figcaption id="img-caption">Shri Ram's victorious return.
        </figcaption>
        <a href="https://www.thehindu.com/society/faith/faith-column-r-krishnamurthy-sastrigal-discourse-on-core-message-of-the-ramayana/article17817723.ece" id="tribute-link" target="_blank"><h2 id="tribute-info">Description of lord Shri Ram</h2></a>
        <ul>
          <li>Rama is India’s epic hero, divine avatar and the archetype of the most honourable and righteous man.</li>
          <li>Lord Rama was so humble and kind that he treated everyone equally. </li>
          <li>Rama's patience, selflessness, obedience to elders and determination to uphold the approved social order have also made him a model for generations of men in India and beyond.</li>
          <li>He has control over His senses, and has the quality of gratitude too. He has mastered the skill of using all kinds of weapons used by demons, devas and humans. He has mastered the Vedas.</li>
        </ul>
      </div>
    </main>
  </body>
</html>

Watch out for typos…