I want to open href link in new tab but the user stay on current page
href="/Money/terms" target="_self" Terms & Conditions
how its possible in HTML??
I want to open href link in new tab but the user stay on current page
href="/Money/terms" target="_self" Terms & Conditions
how its possible in HTML??
simply change target="_self"
to target="_blank"
inside the anchor:
<a href="https://www.google.com" target="_blank">Link</a>