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