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