Difference B/w Target = "_Blank" and Target = "Blank"
target="_Blank"
When we are use target="_Blank" then page opening in new tab each time.
target="Blank"
But When we are use target="Blank" then page opening in single tab each time. when we trying multiple click then page opening same tab.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Demo</title>
</head>
<body>
<a href="https://codehubdeep.blogspot.com/" target="_Blank">codehubdeep</a> <br/>
<a href="https://thebestbhojpuri.blogspot.com/" target="_Blank">thebestbhojpuri</a>
</body>
</html>
0 Comments