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