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