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