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