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