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