I made a mailto link that should take the user to their chosen email host, however, when I click on it, I get a new tab opened in chrome. If I try it with another browser, it opens a window on chrome as well. How could I fix this?
<div class="contact-icons container-fluid row justify-content-md-center">
<div class="col-md-1 icon">
<a href="https://www.instagram.com/federicazosi" target="_blank"><i class="fa fa-instagram fa-3x"></i></a>
</div>
<div class="col-md-1 col-md-offset-5 icon">
<a href="mailto:zosifederica@gmail.com" target="_blank"><i class="fa fa-envelope fa-3x"></i></a>
</div>
</div>