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