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