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