Open a link in an <iframe> in another tab

by darkajax

HTML

<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe -->

<iframe id="Example2"
    title="iframe Example 2"
    src="https://maps.google.com/maps?f=q&source=s_q&q=buenos+aires&sll=37.0625,-95.677068&sspn=38.638819,80.859375&t=h&hnear=Buenos+Aires,+Argentina&z=11&ll=-34.603723,-58.381593&output=embed">
</iframe>

CSS

iframe {
  border: none;
  width: 100%;
  height: 300px;
}