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