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