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