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