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