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