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