The a tag is used to link webpages together. so for example if you have a webpage which when you click it, takes you to google.com You can do something like this:
// destination-link link text
| |
<a href="https://google.com"> a link to google </a>
even though the user will only see the text a link to google and when someone clicks it, the user will be taken to the google’s website.
In the same way, you can turn any element into a link if you wrap your anchor tag around it.
In this challenge, you’re expected to change the image into a link by adding it inside of an a tag and giving it appropriate href attribute.