“Abra a nova guia ao clicar em link html” Respostas de código

Página aberta com HTML

<!DOCTYPE html>
## Code by Scratchy (Twitter @S_cratchy)
<html>
<body>

<a href="https://www.Google.com" target="_blank">Gooooooooogle!</a> 

</body>
</html>
Scratchy

Como abrir os links em uma nova janela

The short answer is: just add a target="_blank" attribute to your links (anchor tags).

<a href="https://www.thesitewizard.com/" target="_blank">thesitewizard.com</a>
FunToCode

Botão Abra o link na nova guia

 <button class="btn btn-success" onclick=" window.open('http://google.com','_blank')"> Google</button>
Ivan The Terrible

Abra a nova guia ao clicar em link html

<!-- add target="_blank" to open new tab when link is clicked [in HTML]-->
<a href="YourLink" target="_blank">YourText</a>
Kind Kangaroo

Abrir link em uma nova aba

<a href="The link of the page" target="_blank">Open page in new tab</a>
Random boi

Respostas semelhantes a “Abra a nova guia ao clicar em link html”

Perguntas semelhantes a “Abra a nova guia ao clicar em link html”

Procure respostas de código populares por idioma

Procurar outros idiomas de código