**Tell us what’s Add a target attribute with the value _blank to the anchor (a ) element’s opening tag, so that the link opens in a new tab. happening:**here is the assignment
.
Adding a target attribute is just like adding any other attribute. You add the name of the attribute and use the equals sign to set it to a value. Just like you did previously with the href attribute:
<a href="https://freecatphotoapp.com">
Except this time the name is target and the value is _blank. Just add the new attribute to the <a> tag after the href attribute/value.
You don’t have an attribute in your code. you do have the value inserted though.
You need to insert the attrbiute and the code in that order.
the formula in HTML is always: attribute=“value”
so if your attribute is ‘target’ and the value is ‘_blank’ then thats your solution. they stick together
We can’t see your actual HTML. Please use the following directions to paste your HTML in here.
To display your code in here you need to wrap it in triple back ticks. On a line by itself type three back ticks. Then on the first line below the three back ticks paste in your code. Then below your code on a new line type three more back ticks. The back tick on my keyboard is in the upper left just above the Tab key and below the Esc key.