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