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