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