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