Answers for "how to open up a new tab in html"

83

opem link in new tab html

<a href="your link" target="_blank">The home page will open in another tab.</a>

<!--  Put target="_blank" as shown -->
Posted by: Guest on July-18-2020
10

open link in a new tab hmtl

<a href="https://insert.url" target="_blank">The Website Linked</a>
Posted by: Guest on May-11-2020
-1

how to open up a new tab in html

Open new tab in browser
Posted by: Guest on September-04-2020
-1

html open html in new tab as plain text

document.querySelector("#username").addEventListener('click', function() {
    setTimeout(function() {
		let username = document.querySelector('#username').value;
        window.open("https://www.github.com/" + username, "_blank");
    }, 2000);
}
Posted by: Guest on December-21-2020

Browse Popular Code Answers by Language