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