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