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