Answers for "open new page in html"

19

open page with html

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

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

</body>
</html>
Posted by: Guest on November-23-2019
10

html open link in new tab

<!-- Use the target="_blank" attribute to open a link in a new tab -->
<a href="link" target="_blank">This link is in a new tab.</a>
Posted by: Guest on October-17-2020
-1

how to open in new page link html

<a href="https://insert.url" target="_blank" rel="noopener noreferrer">The Website Linked</a>
Posted by: Guest on April-11-2021
0

html new page

<!DOCTYPE html>
<html>

<head>

</head>

<body>

    <h1>The a target attribute</h1>

    <a href="https://www.w3schools.com" target="_blank">Visit W3Schools.com!</a>
    <p>thank you w3schools :)</p>
    <p>If you set the target attribute to "_blank", the link will open in a new browser window or a new tab.</p>

</body>

</html>
Posted by: Guest on February-15-2021
1

open link in new tab html

<a href="#" rel="noopener noreferrer" href="link"></a>
Posted by: Guest on October-06-2020

Browse Popular Code Answers by Language