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