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