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