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