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