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