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