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