how to open a href in a new page in html page code example
Example 1: a tag open in new tabn
<a target="_blank" href="https://example.com">Link text</a>
Example 2: a tag open new tab
<a target="_blank" rel="noopener noreferrer" href="http://your_url_here.html">Link</a>