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