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