Answer not being read

Tell us what’s happening:
So far, my display: block; is not working :crying_cat_face: . I noticed in the video option it took a second to read.

Your code so far

<img {
max-width: 100%;
display: block;
height: auto;
}
src=“https://s3.amazonaws.com/freecodecamp/FCCStickerPack.jpg” alt=“freeCodeCamp stickers set”>


<style>

</style>

<img {
max-width: 100%; 
display: block;
height: auto;
}
src="https://s3.amazonaws.com/freecodecamp/FCCStickerPack.jpg" alt="freeCodeCamp stickers set">

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.100 Safari/537.36.

Challenge: Make an Image Responsive

Link to the challenge:
https://www.freecodecamp.org/learn/responsive-web-design/responsive-web-design-principles/make-an-image-responsive

Your solution is not correct.
Style declarations like you have here:

{
max-width: 100%; 
display: block;
height: auto;
}

do not go inside of opening tags.

I was able to reset the page, but it was odd- only when I returned to the pg after exiting with the code up did it run appropriately as is shown above. Appreciate you!