Make an Image Responsive
Summary
- Images can be made responsive by using the 
max-widthandheightproperties. 
Final Code
<style>
.responsive-img {
  max-width: 100%;
  height: auto;
}
img {
  width: 600px;
}
</style>
<img class="responsive-img" src="https://s3... alt="freeCodeCamp stickers set">
<img src="https://s3..." alt="freeCodeCamp stickers set">