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