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