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