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