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