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