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