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