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