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