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