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