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