1<a href="https://examplesite.com" target="_blank" rel="noopener noreferrer">
2 Example Link
3</a>
1<!DOCTYPE html>
2<html>
3
4<head>
5
6</head>
7
8<body>
9
10 <h1>The a target attribute</h1>
11
12 <a href="https://www.w3schools.com" target="_blank">Visit W3Schools.com!</a>
13 <p>thank you w3schools :)</p>
14 <p>If you set the target attribute to "_blank", the link will open in a new browser window or a new tab.</p>
15
16</body>
17
18</html>
19