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