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