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