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