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