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