I cant resolve my code

Tell us what’s happening:
Hello everyone.
I have a little of experience working with HTML and CSS and i think i have wrote the code well. I thought i followed all the steps by i cant visualize the code in a right way on the screen. Just the title and subtitle. Even the image link.
If there is something i am missing i’d like to know because it seems weird.
Maybe is a language barrier i’am having

Thanks in advanced

Your code so far

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>FreeCodeCamp</title>

</head>
<body>
  <main id="main">
    <header class="header-container">
      <h1 id="title">
        Dr. Norman Borlaug
      </h1>
      <h2 class="subtitle">
        The man who saved a billion lives
      </h2>
    </header>
  
    <div id="img-div">
      <img id="image" src="https://cdn.freecodecamp.org/testable-projects-fcc/images/tribute-page-main-image.jpg" alt="biologists">
    </div>
    
    <div id="img-caption">
      <p>
        Dr. Norman Borlaug, third from the left, trains biologists in Mexico on how to increase wheat yields - part of his life-long war on hunger.
      </p>
    </p>
    </div>
  
    <div id="tribute-info">
      <h3>
        Here's a time line of Dr. Borlaug's life:
      </h3>
    </div>
    
    <div class="list-container">
      <ul>
        <li>
          1945 - Discovers a way to grown wheat twice each season, doubling wheat yields
        </li>
        <li>
          1953 - crosses a short, sturdy dwarf breed of wheat with a high-yeidling American breed, creating a strain that responds well to fertilizer. It goes on to provide 95% of Mexico's wheat.
        </li>
        <li>
          1962 - Visits Delhi and brings his high-yielding strains of wheat to the Indian subcontinent in time to help mitigate mass starvation due to a rapidly expanding population
        </li>
        <li>
          1970 - receives the Nobel Peace Prize
        </li>
        <li>
          1983 - helps seven African countries dramatically increase their maize and sorghum yields
        </li>
        <li>
          1984 - becomes a distinguished professor at Texas A&M University
        </li>
        <li>
          2005 - states "we will have to double the world food supply by 2050." Argues that genetically modified crops are the only way we can meet the demand, as we run out of arable land. Says that GM crops are not inherently dangerous because "we've been genetically modifying plants and animals for a long time. Long before we called it science, people were selecting the best breeds."</li>
        <li>
          2009 - dies at the age of 95.
        </li>
      </ul>
    </div>
    
    <div class="quote-container">
      <p class="quote-one">
        "Borlaug's life and achievement are testimony to the far-reaching contribution that one man's towering intellect, persistence and scientific vision can make to human peace and progress."
      </p>
      <p class="quote-two">
        -- Indian Prime Minister Manmohan Singh
      </p>
    </div>
    
    <footer class="footer-container">
      <p class="footer-text">
        If you have time, you should read more about this incredible human being on his <span>
        <a id="tribute-link" href="#" target="_blank"> Wikipedia entry
        </a>
        </span>
        .
      </p>
    </footer>
  </main>
</body>
</html>

Your browser information:

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

Challenge: Build a Tribute Page

Link to the challenge:

I’ve edited your post 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 (’).

HI @matiasd.gimenez !

Welcome to the forum!

I don’t understand what you mean by visualize the code in the right way.
What issues are your having?

Also, you haven’t included any CSS.
You need CSS to pass two of the tests.

When asking for help on projects, it is easier to share a link to your codepen so we can see what is going on.

Hope that helps!

Sidenote: it is encouraged that you build your own project with your own content instead of rebuilding the sample projects.
You will learn a lot more that way. :grinning:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.