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