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