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