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