I would like to know if there is any recommendation on using the target Html attributes with or without _
before the value, I see that it's kind of standard to use it with _
, but if it is missing the redirection also works:
<a href="https://www.google.com" target="_blank">Blank com _</a>
<a href="https://www.google.com" target="blank">Blank sem _</a>
<a href="https://www.google.com" target="_self">Self com _</a>
<a href="https://www.google.com" target="self">Self sem _</a>