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