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