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