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