Use on the webTotal Use [ 4743 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/d0b79c5ed9a7ce9b179f090a5da4694e?family=Vilaage_TRIAL_V0.1+Thin" rel="stylesheet"> 
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
  @import url(https://db.onlinewebfonts.com/c/d0b79c5ed9a7ce9b179f090a5da4694e?family=Vilaage_TRIAL_V0.1+Thin); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "Vilaage_TRIAL_V0.1 Thin";
    src: url("https://db.onlinewebfonts.com/t/d0b79c5ed9a7ce9b179f090a5da4694e.eot");
    src: url("https://db.onlinewebfonts.com/t/d0b79c5ed9a7ce9b179f090a5da4694e.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/d0b79c5ed9a7ce9b179f090a5da4694e.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/d0b79c5ed9a7ce9b179f090a5da4694e.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/d0b79c5ed9a7ce9b179f090a5da4694e.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/d0b79c5ed9a7ce9b179f090a5da4694e.svg#Vilaage_TRIAL_V0.1 Thin")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "Vilaage_TRIAL_V0.1 Thin";