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