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