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