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