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