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