Need feedback - Tribute page

I have finished my tribute page project but I passed only 7/10. I’d appreciate your feedback.


TIA

2 Likes

Nice and simple! But you should finish it by passing all tests.

I had totally missed the test suite. Now, I can’t figure out what is missing or wrong. :thinking:

You are just missing to add some ids to some of your html elements like:

<main id="main">

then

<title id="title">Rock Your Curls</title>

and your img should have css like:

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

Happy coding.

1 Like

Yaaaaay!:tada::fireworks: I passed the tests. Thank you! :grinning:I had figured out the first two, but was going crazy with the #image.