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