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