<!DOCTYPE html>
<html>
<head>
<title>A link with a target Attribute</title>
</head>
<body>
<h1>A link with a target attribute</h1>
<p>Why not visit the<a href="https://www.google.com/" target=_blank> Google Home Page </a>?</p>
<p>This will open up a brand new browser tab</p>
<p>Also notice that there are white space before and after the link. Not professional looking</p>
</body>
</html>