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