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