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