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