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