An anchor element is a link to other resource, and looks like this:
<a href="https://freecodecamp.org" target="_blank">this links to freecodecamp.org</a>
We can put any HTML element inside an anchor element to make it a link.
The href attribute is called hypertext reference.
The if the target attribute has the value of _blank (or any other name that doesn't start with an underscore), the link will be opened in a new browser window.