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