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