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