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