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