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