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