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