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