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