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