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