Learn CSS Grid by Building a Magazine - Step 22

what am i doing wrong?

<aside class="image-wrapper">
          <img src='https://cdn.freecodecamp.org/testable-projects-fcc/images/random-quote-machine.png' alt='image of the quote machine project' class='image-1' loading='lazy' width:'600' height:'400'/>
          <img />
          <blockquote class="image-quote"></blockquote>
          <img />
        </aside>

Your browser information:

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

Challenge: Learn CSS Grid by Building a Magazine - Step 22

Link to the challenge:

Hello!

img elements do not use closing elements. They are self closing elements.

Great progress!

Happy coding!:slight_smile:

Looks like you have some syntax errors.
you should have width=“600” not width:“600” and height=“400” not height:“400”

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