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