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