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