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