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