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