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