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