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