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