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