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