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