After downloading the Arimo font from Google Fonts, I decided to create a master page and a stylesheet for it. Here is the code I wrote:
@font-face{
font-family:"Arimo";
src: url('../Fonts/Arimo/Arimo-Regular.ttf'),format('truetype');
}
body, html{
font-family:Arimo;
}
However, when I created an .aspx page and linked the master page, the font did not get recognized. Surprisingly, when I used the following Google link:
<link href="https://fonts.googleapis.com/css?family=Arimo" rel="stylesheet" />
it worked perfectly. Can someone explain why the first method didn't work and provide a solution?