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