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