Use on the webTotal Use [ 5878 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/89e2e25ad1d63ef2fd9c0bcb8d2907d6?family=Vista+Sans+Nar+OTCE+Light" 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/89e2e25ad1d63ef2fd9c0bcb8d2907d6?family=Vista+Sans+Nar+OTCE+Light); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "Vista Sans Nar OTCE Light";
    src: url("https://db.onlinewebfonts.com/t/89e2e25ad1d63ef2fd9c0bcb8d2907d6.eot");
    src: url("https://db.onlinewebfonts.com/t/89e2e25ad1d63ef2fd9c0bcb8d2907d6.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/89e2e25ad1d63ef2fd9c0bcb8d2907d6.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/89e2e25ad1d63ef2fd9c0bcb8d2907d6.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/89e2e25ad1d63ef2fd9c0bcb8d2907d6.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/89e2e25ad1d63ef2fd9c0bcb8d2907d6.svg#Vista Sans Nar OTCE Light")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "Vista Sans Nar OTCE Light";