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