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