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