Looking to incorporate an icon into my CSS using the @import feature from a specific font found on . However, I'm encountering issues with the icon not loading properly. Any suggestions on what might be going wrong here? Thank you in advance!
<div class="icon">
</div>
@font-face {
font-family: myFirstFont;
src: url("myserverDirectory/arrow_7.tff");
}
.icon {
height:40px;
width:40px;
font-family:myFirstFont;
content:'/0112';
}