Tribute Page - Build a Tribute Page

I believe that I did everything correctly, but the it says that I still haven’t done three of the tasks which are:
-Your img element should have a display of block .
-Your #image should have a max-width of 100%.
-Your #image should be centered within its parent.

Please do tell me if I am missing anything or if I did mess up anywhere.
Your code so far

<!-- file: index.html -->
<main id="main">
  <h1 id="title">Lionel Messi</h1>
  <p>The little boy from Rosario, Argentina</p>
  <figure id="img-div">
    <img
      id="image"
      src="https://encrypted-tbn1.gstatic.com/licensed-image?q=tbn:ANd9GcSpNWC8pbqyPBG_GSAGQTgCPKJDgKKHwODg34nbnIL6U5xykRk4wvNAxCHUx5h_gWgDdIwo1nKykp3kOfI"
      alt="Messi thumbs up"
    />
    <figcaption id="img-caption">
      Lionel Pessi thumbs up
    </figcaption>
  </figure>
  <section id="tribute-info">
    <h3 id="headline">Here's a time line of Lionel Messi's life:</h3>
    <ul>
      <li><strong>1987</strong> - Born in Rosario, Argentina</li>
      <li>
        <strong>1991</strong> - Played soccer for one of his local clubs
      </li>
      <li>
        <strong>2004</strong> - Joined Barcelona
      </li>
      <li>
        <strong>2004</strong> - Wins La Liga with Barcelona
      </li>
      <li>
        <strong>2009</strong> - Wins his Champions League
      </li>
      <li>
        <strong>2009</strong> - Wins his first Balon D'or
      </li>
      <li>
        <strong>2014</strong> - Loses to Germany in the 118th minute making them second in the FIFA World Cup
      </li>
      <li>
        <strong>2021</strong> - Transfers to PSG
      </li>
      <li>
        <strong>2022</strong> - Wins the FIFA World Cup with Argentina
      </li>
      <li>
        <strong>2023</strong> - Transfers to Inter Miami
      </li>
      <li>
        <strong>2023</strong> - Scores his first goal in the burger league
      </li>
      <li><strong>2023</strong> - King of Football</li>
    </ul>
    <blockquote
      cite="https://www.besoccer.com/new/top-20-best-quotes-ever-said-about-messi-46925#:~:text='Messi%20is%20a%20footballer%20from,'&text='Although%20you%20might%20not%20think,still%20thinks%20that%20he%20is."
    >
      <p>
        "Messi is a footballer from a Play Station game. Things that are impossible to do, he makes them possible." <br>
        "Although you might not think he's human, it's good that Messi still thinks that he is."

      </p>
      <cite>-- Arsène Wenger and Javier Mascherano</cite>
    </blockquote>
    <h3>
      If you have time, you should read more about this incredible human being on his
      <a
        id="tribute-link"
        href="https://en.wikipedia.org/wiki/Lionel_Messi"
        target="_blank"
        >Wikipedia entry</a
      >.
    </h3>
  </section>
</main>
/* file: styles.css */
html {
  font-size: 10px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
    'Helvetica Neue', Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  color: #333;
  margin: 0;
}

h1 {
  font-size: 4rem;
  margin-bottom: 0;
}

@media (max-width: 460px) {
  h1 {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}

h2 {
  font-size: 3.25rem;
}

a {
  color: #477ca7;
}

a:visited {
  color: #74638f;
}

#main {
  margin: 30px 8px;
  padding: 15px;
  border-radius: 5px;
  background: #eee;
}

@media (max-width: 460px) {
  #main {
    margin: 0;
  }
}

#image{
  max-width: 100%;
  display: block;
  height: auto;
  margin: 0 auto;
}

#img-div {
  background: white;
  padding: 10px;
  margin: 0;
}

#img-caption {
  margin: 15px 0 5px 0;
}

@media (max-width: 460px) {
  #img-caption {
    font-size: 1.4rem;
  }
}

#headline {
  margin: 50px 0;
  text-align: center;
}

ul {
  max-width: 550px;
  margin: 0 auto 50px auto;
  text-align: left;
  line-height: 1.6;
}

li {
  margin: 16px 0;
}

blockquote {
  font-style: italic;
  max-width: 545px;
  margin: 0 auto 50px auto;
  text-align: left;
}

Your browser information:

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

Challenge: Tribute Page - Build a Tribute Page

Link to the challenge:

Note: Be sure to add <link rel="stylesheet" href="styles.css"> in your HTML to link your stylesheet and apply your CSS.”

1 Like

I didn’t realize I forgot to do that. Thank you!

1 Like

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