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