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