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