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