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