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