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