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