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