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