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