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