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