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