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