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