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