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