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