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