I have been working on my Vue project and I am trying to incorporate a specific font. However, despite importing the font locally in my App.vue file as shown below, it does not seem to be working properly:
@font-face {
font-family: "Open Sans Bold";
src: local("OpenSans-Bold"), url("./fonts/OpenSans-Bold.ttf"), format("truetype");
font-weight: bold;
}'
In my Home.vue file, this is how I am using the font:
.router-link-active{
font-family: "Open Sans Bold";
color: #5F5F5F !important;
text-decoration: underline;
text-underline-position: under;
text-decoration-thickness: 3px;
}
Could you please point out if there are any mistakes in the way I have implemented the font?