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