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