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