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