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