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