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