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